使用Java在文件中间写入字节的最佳方法是什么?
在文件中间进行读写与RandomAccessFile在Java中使用一样简单。
RandomAccessFile
RandomAccessFile尽管有它的名字,但它更像是InputStream和OutputStream而不是像File。它使您可以读取或查找bytes文件,然后开始写您想停在的字节。
InputStream
OutputStream
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(); }