我正在尝试从文件中的某个点读取某个文件的某个字节数。
RandomAccessFile randomAccessFile = new RandomAccessFile(_file, "r");
randomAccessFile.seek(_offSet);
randomAccessFile.read(buffer, 0, _size);
其中 _offSet 和 _size 类型为“long”。
问题是,读取方法只需要“int”。我通过使用“seek”克服了偏移问题,如何克服要读取的字节数?