我现在拥有的是使用 FileInputStream
int length = 1024*1024;
FileInputStream fs = new FileInputStream(new File("foo"));
fs.skip(offset);
byte[] buf = new byte[length];
int bufferSize = fs.read(buf, 0, length);
String s = new String(buf, 0, bufferSize);
我想知道如何通过在番石榴库中使用 ByteStreams 来实现相同的结果。
非常感谢!