如何在Java中从某个偏移量读取文件?

2022-09-01 14:26:56

嘿,我正在尝试打开一个文件,然后仅从偏移量读取一定长度!我读了这个主题:如何使用Java文件中的特定行号读取特定行?其中它说如果不读取之前的行,就不可能读取某个行,但我想知道字节!

FileReader location = new FileReader(file);
BufferedReader inputFile = new BufferedReader(location);
// Read from bytes 1000 to 2000
// Something like this
inputFile.read(1000,2000);

是否可以从已知偏移量中读取某些字节?


答案 1

RandomAccessFile公开了一个函数:

seek(long pos) 
          Sets the file-pointer offset, measured from the beginning of this file, at which the next read or write occurs.

答案 2

FileInputStream.getChannel().position(123)

这是除了:RandomAccessFile

File f = File.createTempFile("aaa", null);
byte[] out = new byte[]{0, 1, 2};

FileOutputStream o = new FileOutputStream(f);
o.write(out);
o.close();

FileInputStream i = new FileInputStream(f);
i.getChannel().position(1);
assert i.read() == out[1];
i.close();
f.delete();

这应该没问题,因为FileInputStream#getChannel的文档说:

显式或通过读取更改通道的位置将更改此流的文件位置。

但是,我不知道这种方法与什么相比。RandomAccessFile