• 1.2w+字!Java IO 基础知识总结


    IO 流简介

    IO 即 Input/Output ,输入和输出。数据输入到计算机内存的过程即输入,反之输出到外部存储(比如数据库,文件,远程主机)的过程即输出。数据传输过程类似于水流,因此称为 IO 流。IO 流在 Java 中分为输入流和输出流,而根据数据的处理方式又分为字节流和字符流。

    Java IO 流的 40 多个类都是从如下 4 个抽象类基类中派生出来的。

    • InputStream / Reader : 所有的输入流的基类,前者是字节输入流,后者是字符输入流。

    • OutputStream / Writer : 所有输出流的基类,前者是字节输出流,后者是字符输出流。

    字节流

    InputStream(字节输入流)

    InputStream 用于从源头(通常是文件)读取数据(字节信息)到内存中, java.io.InputStream 抽象类是所有字节输入流的父类。

    InputStream 常用方法 :

    • read() :返回输入流中下一个字节的数据。返回的值介于 0 到 255 之间。如果未读取任何字节,则代码返回 -1 ,表示文件结束。

      1. read(byte b[ ])
      2. b
      3. b
      4. -1
      5. b.length
      6. read(b, 0, b.length)
      1. read(byte b[], int off, int len)
      2. read(byte b[ ])
      3. off
      4. len
    • skip(long n) :忽略输入流中的 n 个字节 ,返回实际忽略的字节数。

    • available() :返回输入流中可以读取的字节数。

    • close() :关闭输入流释放相关的系统资源。

    从 Java 9 开始, InputStream 新增加了多个实用的方法:

    • readAllBytes() :读取输入流中的所有字节,返回字节数组。

    • readNBytes(byte[] b, int off, int len) :阻塞直到读取 len 个字节。

    • transferTo(OutputStream out) :将所有字节从一个输入流传递到一个输出流。

    FileInputStream 是一个比较常用的字节输入流对象,可直接指定文件路径,可以直接读取单字节数据,也可以读取至字节数组中。

    FileInputStream 代码示例:

    1. try (InputStream fis =
    2. new FileInputStream(
    3. "input.txt")) {
    4. System.
    5. out.println(
    6. "Number of remaining bytes:"
    7. + fis.available());
    8. int content;
    9. long skip = fis.skip(
    10. 2);
    11. System.
    12. out.println(
    13. "The actual number of bytes skipped:" + skip);
    14. System.
    15. out.print(
    16. "The content read from file:");
    17. while ((content = fis.read()) !=
    18. -1) {
    19. System.
    20. out.print((
    21. char) content);
    22. }
    23. }
    24. catch (IOException e) {
    25. e.printStackTrace();
    26. }

    input.txt 文件内容:

    输出:

    1. Number
    2. of remaining
    3. bytes:
    4. 11
    5. The actual
    6. number
    7. of bytes
    8. skipped:
    9. 2
    10. The content read
    11. from
    12. file:
    13. JavaGuide

    不过,一般我们是不会直接单独使用 FileInputStream ,通常会配合 BufferedInputStream (字节缓冲输入流,后文会讲到)来使用。

    像下面这段代码在我们的项目中就比较常见,我们通过 readAllBytes() 读取输入流所有字节并将其直接赋值给一个 String 对象。

    1. // 新建一个 BufferedInputStream 对象
    2. BufferedInputStream bufferedInputStream =
    3. new
    4. BufferedInputStream(
    5. new
    6. FileInputStream(
    7. "input.txt"));
    8. // 读取文件的内容并复制到 String 对象中
    9. String result =
    10. new
    11. String(bufferedInputStream.
    12. readAllBytes());
    13. System.
    14. out.
    15. println(result);

    DataInputStream 用于读取指定类型数据,不能单独使用,必须结合 FileInputStream 。

    1. FileInputStream
    2. fileInputStream
    3. =
    4. new
    5. FileInputStream(
    6. "input.txt");
    7. //必须将fileInputStream作为构造参数才能使用
    8. DataInputStream
    9. dataInputStream
    10. =
    11. new
    12. DataInputStream(fileInputStream);
    13. //可以读取任意具体的类型数据
    14. dataInputStream.readBoolean();
    15. dataInputStream.readInt();
    16. dataInputStream.readUTF();

    ObjectInputStream 用于从输入流中读取 Java 对象(反序列化), ObjectOutputStream 用于将对象写入到输出流(序列化)。

    1. ObjectInputStream input =
    2. new ObjectInputStream(
    3. new FileInputStream(
    4. "object.data"));
    5. MyClass
    6. object = (
    7. MyClass) input.readObject();
    8. input.close();

    另外,用于序列化和反序列化的类必须实现 Serializable 接口,对象中如果有属性不想被序列化,使用 transient 修饰。

    OutputStream(字节输出流)

    OutputStream 用于将数据(字节信息)写入到目的地(通常是文件), java.io.OutputStream 抽象类是所有字节输出流的父类。

    OutputStream 常用方法 :

    • write(int b) :将特定字节写入输出流。

      1. write(byte b[ ])
      2. b
      3. write(b, 0, b.length)
      1. write(byte[] b, int off, int len)
      2. write(byte b[ ])
      3. off
      4. len
    • flush() :刷新此输出流并强制写出所有缓冲的输出字节。

    • close() :关闭输出流释放相关的系统资源。

    FileOutputStream 是最常用的字节输出流对象,可直接指定文件路径,可以直接输出单字节数据,也可以输出指定的字节数组。

    FileOutputStream 代码示例:

    1. try (FileOutputStream output =
    2. new
    3. FileOutputStream(
    4. "output.txt")) {
    5. byte[]
    6. array =
    7. "JavaGuide".
    8. getBytes();
    9. output.
    10. write(
    11. array);
    12. }
    13. catch (IOException e) {
    14. e.
    15. printStackTrace();
    16. }

    运行结果:

    类似于 FileInputStream , FileOutputStream 通常也会配合 BufferedOutputStream (字节缓冲输出流,后文会讲到)来使用。

    1. FileOutputStream
    2. fileOutputStream
    3. =
    4. new
    5. FileOutputStream(
    6. "output.txt");
    7. BufferedOutputStream
    8. bos
    9. =
    10. new
    11. BufferedOutputStream(fileOutputStream)

    DataOutputStream 用于写入指定类型数据,不能单独使用,必须结合 FileOutputStream

    1. // 输出流
    2. FileOutputStream
    3. fileOutputStream
    4. =
    5. new
    6. FileOutputStream(
    7. "out.txt");
    8. DataOutputStream
    9. dataOutputStream
    10. =
    11. new
    12. DataOutputStream(fileOutputStream);
    13. // 输出任意数据类型
    14. dataOutputStream.writeBoolean(
    15. true);
    16. dataOutputStream.writeByte(
    17. 1);

    ObjectOutputStream 用于从输入流中读取 Java 对象( ObjectInputStream ,反序列化)或者将对象写入到输出流( ObjectOutputStream ,序列化)。

    1. ObjectOutputStream
    2. output
    3. =
    4. new
    5. ObjectOutputStream(
    6. new
    7. FileOutputStream(
    8. "file.txt")
    9. Person
    10. person
    11. =
    12. new
    13. Person(
    14. "Guide哥",
    15. "JavaGuide作者");
    16. output.writeObject(person);

    字符流

    不管是文件读写还是网络发送接收,信息的最小存储单元都是字节。 那为什么 I/O 流操作要分为字节流操作和字符流操作呢?

    个人认为主要有两点原因:

    • 字符流是由 Java 虚拟机将字节转换得到的,这个过程还算是比较耗时。

    • 如果我们不知道编码类型就很容易出现乱码问题。

    乱码问题这个很容易就可以复现,我们只需要将上面提到的 FileInputStream 代码示例中的 input.txt 文件内容改为中文即可,原代码不需要改动。

    输出:

    1. Number
    2. of remaining
    3. bytes:
    4. 9
    5. The actual
    6. number
    7. of bytes
    8. skipped:
    9. 2
    10. The content read
    11. from
    12. file:§å®¶å¥½

    可以很明显地看到读取出来的内容已经变成了乱码。

    因此,I/O 流就干脆提供了一个直接操作字符的接口,方便我们平时对字符进行流操作。如果音频文件、图片等媒体文件用字节流比较好,如果涉及到字符的话使用字符流比较好。

    字符流默认采用的是 Unicode 编码,我们可以通过构造方法自定义编码。顺便分享一下之前遇到的笔试题:常用字符编码所占字节数? utf8 :英文占 1 字节,中文占 3 字节, unicode :任何字符都占 2 个字节, gbk :英文占 1 字节,中文占 2 字节。

    Reader(字符输入流)

    Reader 用于从源头(通常是文件)读取数据(字符信息)到内存中, java.io.Reader 抽象类是所有字符输入流的父类。

    Reader 用于读取文本, InputStream 用于读取原始字节。

    Reader 常用方法 :

    • read() : 从输入流读取一个字符。

      1. read(char[] cbuf)
      2. cbuf
      3. read(cbuf, 0, cbuf.length)
      1. read(char[] cbuf, int off, int len)
      2. read(char[] cbuf)
      3. off
      4. len
    • skip(long n) :忽略输入流中的 n 个字符 ,返回实际忽略的字符数。

    • close() : 关闭输入流并释放相关的系统资源。

    InputStreamReader 是字节流转换为字符流的桥梁,其子类 FileReader 是基于该基础上的封装,可以直接操作字符文件。

    1. // 字节流转换为字符流的桥梁
    2. public
    3. class InputStreamReader extends Reader {
    4. }
    5. // 用于读取字符文件
    6. public
    7. class FileReader extends InputStreamReader {
    8. }

    FileReader 代码示例:

    1. try (
    2. FileReader fileReader = new FileReader(
    3. "input.txt")
    4. ;) {
    5. int content
    6. ;
    7. long skip = fileReader.skip(
    8. 3)
    9. ;
    10. System.out.println(
    11. "The actual number of bytes skipped:" + skip)
    12. ;
    13. System.out.print(
    14. "The content read from file:")
    15. ;
    16. while ((
    17. content = fileReader.read()) !=
    18. -1) {
    19. System.out.print((
    20. char) content)
    21. ;
    22. }
    23. } catch (
    24. IOException e) {
    25. e.printStackTrace()
    26. ;
    27. }

    input.txt 文件内容:

    输出:

    1. The actual number
    2. of bytes skipped:
    3. 3
    4. The content
    5. read from
    6. file:我是Guide。

    Writer(字符输出流)

    Writer 用于将数据(字符信息)写入到目的地(通常是文件), java.io.Writer 抽象类是所有字节输出流的父类。

    Writer 常用方法 :

    • write(int c) : 写入单个字符。

      1. write(char[] cbuf)
      2. cbuf
      3. write(cbuf, 0, cbuf.length)
      1. write(char[] cbuf, int off, int len)
      2. write(char[] cbuf)
      3. off
      4. len
    • write(String str) :写入字符串,等价于 write(str, 0, str.length()) 。

      1. write(String str, int off, int len)
      2. write(String str)
      3. off
      4. len
      1. append(CharSequence csq)
      2. Writer
      3. Writer
      1. append(char c)
      2. Writer
      3. Writer
    • flush() :刷新此输出流并强制写出所有缓冲的输出字符。

    • close() :关闭输出流释放相关的系统资源。

    OutputStreamWriter 是字符流转换为字节流的桥梁,其子类 FileWriter 是基于该基础上的封装,可以直接将字符写入到文件。

    1. // 字符流转换为字节流的桥梁
    2. public
    3. class InputStreamReader extends Reader {
    4. }
    5. // 用于写入字符到文件
    6. public
    7. class FileWriter extends OutputStreamWriter {
    8. }

    FileWriter 代码示例:

    1. try (
    2. Writer
    3. output
    4. =
    5. new
    6. FileWriter(
    7. "output.txt")) {
    8. output.write(
    9. "你好,我是Guide。");
    10. }
    11. catch (IOException e) {
    12. e.printStackTrace();
    13. }

    输出结果:

    字节缓冲流

    IO 操作是很消耗性能的,缓冲流将数据加载至缓冲区,一次性读取/写入多个字节,从而避免频繁的 IO 操作,提高流的传输效率。

    字节缓冲流这里采用了装饰器模式来增强 InputStream 和 OutputStream 子类对象的功能。

    举个例子,我们可以通过 BufferedInputStream (字节缓冲输入流)来增强 FileInputStream 的功能。

    1. // 新建一个 BufferedInputStream 对象
    2. BufferedInputStream
    3. bufferedInputStream
    4. =
    5. new
    6. BufferedInputStream(
    7. new
    8. FileInputStream(
    9. "input.txt"));

    字节流和字节缓冲流的性能差别主要体现在我们使用两者的时候都是调用 write(int b) 和 read() 这两个一次只读取一个字节的方法的时候。由于字节缓冲流内部有缓冲区(字节数组),因此,字节缓冲流会先将读取到的字节存放在缓存区,大幅减少 IO 次数,提高读取效率。

    我使用 write(int b) 和 read() 方法,分别通过字节流和字节缓冲流复制一个 524.9 mb 的 PDF 文件耗时对比如下:

    1. 使用缓冲流复制PDF文件总耗时:15428 毫秒
    2. 使用普通字节流复制PDF文件总耗时:2555062 毫秒

    两者耗时差别非常大,缓冲流耗费的时间是字节流的 1/165。

    测试代码如下:

    1. @Test
    2. void
    3. copy_pdf_to_another_pdf_buffer_stream
    4. () {
    5. // 记录开始时间
    6. long
    7. start
    8. = System.currentTimeMillis();
    9. try (
    10. BufferedInputStream
    11. bis
    12. =
    13. new
    14. BufferedInputStream(
    15. new
    16. FileInputStream(
    17. "深入理解计算机操作系统.pdf"));
    18. BufferedOutputStream
    19. bos
    20. =
    21. new
    22. BufferedOutputStream(
    23. new
    24. FileOutputStream(
    25. "深入理解计算机操作系统-副本.pdf"))) {
    26. int content;
    27. while ((content = bis.read()) != -
    28. 1) {
    29. bos.write(content);
    30. }
    31. }
    32. catch (IOException e) {
    33. e.printStackTrace();
    34. }
    35. // 记录结束时间
    36. long
    37. end
    38. = System.currentTimeMillis();
    39. System.out.println(
    40. "使用缓冲流复制PDF文件总耗时:" + (end - start) +
    41. " 毫秒");
    42. }
    43. @Test
    44. void
    45. copy_pdf_to_another_pdf_stream
    46. () {
    47. // 记录开始时间
    48. long
    49. start
    50. = System.currentTimeMillis();
    51. try (
    52. FileInputStream
    53. fis
    54. =
    55. new
    56. FileInputStream(
    57. "深入理解计算机操作系统.pdf");
    58. FileOutputStream
    59. fos
    60. =
    61. new
    62. FileOutputStream(
    63. "深入理解计算机操作系统-副本.pdf")) {
    64. int content;
    65. while ((content = fis.read()) != -
    66. 1) {
    67. fos.write(content);
    68. }
    69. }
    70. catch (IOException e) {
    71. e.printStackTrace();
    72. }
    73. // 记录结束时间
    74. long
    75. end
    76. = System.currentTimeMillis();
    77. System.out.println(
    78. "使用普通流复制PDF文件总耗时:" + (end - start) +
    79. " 毫秒");
    80. }

    如果是调用 read(byte b[]) 和 write(byte b[], int off, int len) 这两个写入一个字节数组的方法的话,只要字节数组的大小合适,两者的性能差距其实不大,基本可以忽略。

    这次我们使用 read(byte b[]) 和 write(byte b[], int off, int len) 方法,分别通过字节流和字节缓冲流复制一个 524.9 mb 的 PDF 文件耗时对比如下:

    1. 使用缓冲流复制PDF文件总耗时:695 毫秒
    2. 使用普通字节流复制PDF文件总耗时:989 毫秒

    两者耗时差别不是很大,缓冲流的性能要略微好一点点。

    测试代码如下:

    1. @Test
    2. void
    3. copy_pdf_to_another_pdf_with_byte_array_buffer_stream
    4. () {
    5. // 记录开始时间
    6. long
    7. start
    8. = System.currentTimeMillis();
    9. try (
    10. BufferedInputStream
    11. bis
    12. =
    13. new
    14. BufferedInputStream(
    15. new
    16. FileInputStream(
    17. "深入理解计算机操作系统.pdf"));
    18. BufferedOutputStream
    19. bos
    20. =
    21. new
    22. BufferedOutputStream(
    23. new
    24. FileOutputStream(
    25. "深入理解计算机操作系统-副本.pdf"))) {
    26. int len;
    27. byte[] bytes =
    28. new
    29. byte[
    30. 4 *
    31. 1024];
    32. while ((len = bis.read(bytes)) != -
    33. 1) {
    34. bos.write(bytes,
    35. 0, len);
    36. }
    37. }
    38. catch (IOException e) {
    39. e.printStackTrace();
    40. }
    41. // 记录结束时间
    42. long
    43. end
    44. = System.currentTimeMillis();
    45. System.out.println(
    46. "使用缓冲流复制PDF文件总耗时:" + (end - start) +
    47. " 毫秒");
    48. }
    49. @Test
    50. void
    51. copy_pdf_to_another_pdf_with_byte_array_stream
    52. () {
    53. // 记录开始时间
    54. long
    55. start
    56. = System.currentTimeMillis();
    57. try (
    58. FileInputStream
    59. fis
    60. =
    61. new
    62. FileInputStream(
    63. "深入理解计算机操作系统.pdf");
    64. FileOutputStream
    65. fos
    66. =
    67. new
    68. FileOutputStream(
    69. "深入理解计算机操作系统-副本.pdf")) {
    70. int len;
    71. byte[] bytes =
    72. new
    73. byte[
    74. 4 *
    75. 1024];
    76. while ((len = fis.read(bytes)) != -
    77. 1) {
    78. fos.write(bytes,
    79. 0, len);
    80. }
    81. }
    82. catch (IOException e) {
    83. e.printStackTrace();
    84. }
    85. // 记录结束时间
    86. long
    87. end
    88. = System.currentTimeMillis();
    89. System.out.println(
    90. "使用普通流复制PDF文件总耗时:" + (end - start) +
    91. " 毫秒");
    92. }

    BufferedInputStream(字节缓冲输入流)

    BufferedInputStream 从源头(通常是文件)读取数据(字节信息)到内存的过程中不会一个字节一个字节的读取,而是会先将读取到的字节存放在缓存区,并从内部缓冲区中单独读取字节。这样大幅减少了 IO 次数,提高了读取效率。

    BufferedInputStream 内部维护了一个缓冲区,这个缓冲区实际就是一个字节数组,通过阅读 BufferedInputStream 源码即可得到这个结论。

    1. public
    2. class BufferedInputStream extends FilterInputStream {
    3. // 内部缓冲区数组
    4. protected volatile byte buf[];
    5. // 缓冲区的默认大小
    6. private static int
    7. DEFAULT_BUFFER_SIZE =
    8. 8192;
    9. // 使用默认的缓冲区大小
    10. public
    11. BufferedInputStream(
    12. InputStream in) {
    13. this(in,
    14. DEFAULT_BUFFER_SIZE);
    15. }
    16. // 自定义缓冲区大小
    17. public
    18. BufferedInputStream(
    19. InputStream in, int size) {
    20. super(in);
    21. if (size <=
    22. 0) {
    23. throw
    24. new
    25. IllegalArgumentException(
    26. "Buffer size <= 0");
    27. }
    28. buf =
    29. new byte[size];
    30. }
    31. }

    缓冲区的大小默认为 8192 字节,当然了,你也可以通过 BufferedInputStream(InputStream in, int size) 这个构造方法来指定缓冲区的大小。

    BufferedOutputStream(字节缓冲输出流)

    BufferedOutputStream 将数据(字节信息)写入到目的地(通常是文件)的过程中不会一个字节一个字节的写入,而是会先将要写入的字节存放在缓存区,并从内部缓冲区中单独写入字节。这样大幅减少了 IO 次数,提高了读取效率

    1. try (BufferedOutputStream bos =
    2. new
    3. BufferedOutputStream(
    4. new
    5. FileOutputStream(
    6. "output.txt"))) {
    7. byte[]
    8. array =
    9. "JavaGuide".
    10. getBytes();
    11. bos.
    12. write(
    13. array);
    14. }
    15. catch (IOException e) {
    16. e.
    17. printStackTrace();
    18. }

    类似于 BufferedInputStream , BufferedOutputStream 内部也维护了一个缓冲区,并且,这个缓存区的大小也是 8192 字节。

    字符缓冲流

    BufferedReader (字符缓冲输入流)和 BufferedWriter (字符缓冲输出流)类似于 BufferedInputStream (字节缓冲输入流)和 BufferedOutputStream (字节缓冲输入流),内部都维护了一个字节数组作为缓冲区。不过,前者主要是用来操作字符信息。

    打印流

    下面这段代码大家经常使用吧?

    1. System.
    2. out.print(
    3. "Hello!");
    4. System.
    5. out.println(
    6. "Hello!");

    System.out 实际是用于获取一个 PrintStream 对象, print 方法实际调用的是 PrintStream 对象的 write 方法。

    PrintStream 属于字节打印流,与之对应的是 PrintWriter (字符打印流)。 PrintStream 是 OutputStream 的子类, PrintWriter 是 Writer 的子类。

    1. public
    2. class PrintStream extends FilterOutputStream
    3. implements
    4. Appendable,
    5. Closeable {
    6. }
    7. public
    8. class PrintWriter extends Writer {
    9. }

    随机访问流

    这里要介绍的随机访问流指的是支持随意跳转到文件的任意位置进行读写的 RandomAccessFile 。

    RandomAccessFile 的构造方法如下,我们可以指定 mode (读写模式)。

    1. // openAndDelete 参数默认为 false 表示打开文件并且这个文件不会被删除
    2. public
    3. RandomAccessFile
    4. (File file, String mode)
    5. throws FileNotFoundException {
    6. this(file, mode,
    7. false);
    8. }
    9. // 私有方法
    10. private
    11. RandomAccessFile
    12. (File file, String mode, boolean openAndDelete)
    13. throws FileNotFoundException{
    14. // 省略大部分代码
    15. }

    读写模式主要有下面四种:

    • r : 只读模式。

    • rw : 读写模式

      1. rws
      2. rw
      3. rws
      1. rwd
      2. rw
      3. rwd

    文件内容指的是文件中实际保存的数据,元数据则是用来描述文件属性比如文件的大小信息、创建和修改时间。

    RandomAccessFile 中有一个文件指针用来表示下一个将要被写入或者读取的字节所处的位置。我们可以通过 RandomAccessFile 的 seek(long pos) 方法来设置文件指针的偏移量(距文件开头 pos 个字节处)。如果想要获取文件指针当前的位置的话,可以使用 getFilePointer() 方法。

    RandomAccessFile 代码示例:

    1. RandomAccessFile randomAccessFile =
    2. new RandomAccessFile(
    3. new File(
    4. "input.txt"),
    5. "rw");
    6. System.
    7. out.println(
    8. "读取之前的偏移量:" + randomAccessFile.getFilePointer() +
    9. ",当前读取到的字符" + (
    10. char) randomAccessFile.read() +
    11. ",读取之后的偏移量:" + randomAccessFile.getFilePointer());
    12. // 指针当前偏移量为 6
    13. randomAccessFile.seek(
    14. 6);
    15. System.
    16. out.println(
    17. "读取之前的偏移量:" + randomAccessFile.getFilePointer() +
    18. ",当前读取到的字符" + (
    19. char) randomAccessFile.read() +
    20. ",读取之后的偏移量:" + randomAccessFile.getFilePointer());
    21. // 从偏移量 7 的位置开始往后写入字节数据
    22. randomAccessFile.write(
    23. new
    24. byte[]{
    25. 'H',
    26. 'I',
    27. 'J',
    28. 'K'});
    29. // 指针当前偏移量为 0,回到起始位置
    30. randomAccessFile.seek(
    31. 0);
    32. System.
    33. out.println(
    34. "读取之前的偏移量:" + randomAccessFile.getFilePointer() +
    35. ",当前读取到的字符" + (
    36. char) randomAccessFile.read() +
    37. ",读取之后的偏移量:" + randomAccessFile.getFilePointer());

    input.txt 文件内容:

    输出:

    1. 读取之前的偏移量:
    2. 0,当前读取到的字符
    3. A,读取之后的偏移量:
    4. 1
    5. 读取之前的偏移量:
    6. 6,当前读取到的字符G,读取之后的偏移量:
    7. 7
    8. 读取之前的偏移量:
    9. 0,当前读取到的字符
    10. A,读取之后的偏移量:
    11. 1

    input.txt 文件内容变为 ABCDEFGHIJK 。

    RandomAccessFile 的 write 方法在写入对象的时候如果对应的位置已经有数据的话,会将其覆盖掉。

    1. RandomAccessFile randomAccessFile =
    2. new RandomAccessFile(
    3. new File(
    4. "input.txt"),
    5. "rw");
    6. randomAccessFile.write(
    7. new
    8. byte[]{
    9. 'H',
    10. 'I',
    11. 'J',
    12. 'K'});

    假设运行上面这段程序之前 input.txt 文件内容变为 ABCD ,运行之后则变为 HIJK 。

    RandomAccessFile 比较常见的一个应用就是实现大文件的 断点续传 。何谓断点续传?简单来说就是上传文件中途暂停或失败(比如遇到网络问题)之后,不需要重新上传,只需要上传那些未成功上传的文件分片即可。分片(先将文件切分成多个文件分片)上传是断点续传的基础。

    RandomAccessFile 可以帮助我们合并文件分片,示例代码如下:

    我在《Java 面试指北》中详细介绍了大文件的上传问题。

    RandomAccessFile 的实现依赖于 FileDescriptor (文件描述符) 和 FileChannel (内存映射文件)。

    ··········  END  ··············

    来源:https://blog.csdn.net/lt_xiaodou/article/details/126666019
  • 相关阅读:
    如何保障汽车嵌入式软件的质量与安全?您需要了解ASPICE标准
    ospf综合实验
    JavaFx 实现水平滚动文本(跑马灯效果)
    【Java】List接口中泛型如何实现
    【SpringBoot教程】SpringBoot+MybatisPlus数据库连接测试 用户收货信息接口开发
    Java---Stream流详解
    Spring框架系列 - 深入浅出SpringMVC请求流程和案例
    thinkphp5 redis使用
    【计算机考研必备常识】24考研你开始准备了吗?
    [科普文] Web3 中的资产负债表
  • 原文地址:https://blog.csdn.net/china_coding/article/details/126925299