在Java文件的中间写字节的最佳方法

使用Java在文件中间写入字节的最佳方法是什么?

在文件中间读写与在Java中使用RandomAccessFile一样简单。

RandomAccessFile ,尽pipe它的名字,更像是一个InputStreamOutputStream ,不像一个File 。 它允许您读取或查找文件中的bytes ,然后开始写任何您要关注的字节。

一旦你发现这个类,如果你对普通的文件I / O有一个基本的了解,使用起来非常简单。

一个小例子:

 public static void aMethod(){ RandomAccessFile f = new RandomAccessFile(new File("whereDidIPutTHatFile"), "rw"); long aPositionWhereIWantToGo = 99; f.seek(aPositionWhereIWantToGo); // this basically reads n bytes in the file f.write("Im in teh fil, writn bites".getBytes()); f.close(); } 

使用RandomAccessFile

  • 教程
  • 的Javadoc

以写模式打开文件,不截断,寻找所需的偏移量,并写入所需的数据。 只要注意文本/二进制模式。