使用Java在文件中间写入字节的最佳方法是什么?
在文件中间读取和写入就像RandomAccessFile
在Java中使用一样简单.
RandomAccessFile
,尽管它的名字,更像是一个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(); }
使用 RandomAccessFile
教程
的Javadoc