Hey I'm trying to open a file and read just from an offset for a certain length! I read this topic: In Java, how to read from a file a specific line, given the line number? in there it said that it's not to possible read a certain line without reading the lines before, but I'm wondering about bytes!
FileReader location = new FileReader(file);
BufferedReader inputFile = new BufferedReader(location);
// Read from bytes 1000 to 2000
// Something like this
inputFile.read(1000,2000);
Is it possible to read certain bytes from a known offset?
Thanks in advance!
Seekmethods exist. – Robert Harvey♦ Mar 12 '12 at 16:42