私が今持っているのは 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 を使用して、どうすれば同じ結果を実現できるのでしょうか。
どうもありがとう!