一尘不染

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

java

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


阅读 324

收藏
2020-09-08

共1个答案

一尘不染

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

RandomAccessFile尽管有它的名字,但它更像是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();
}
2020-09-08