The following problem: I have a large textfile with each line containing 13 bytes. I do not want to read the file line by line in the common way using InputStream. I am trying to use NIO Channels and MappedByteBuffers for better performance and limited rescources.
So this is what I do so far:
RandomAccessFile data = new RandomAccessFile("the_file.txt", "rw");
FileChannel channel = data.getChannel();
MappedByteBuffer buffer = channel.map(FileChannel.MapMode.READ_WRITE, 0, capacity);
Here capacity is n*13, to make sure only whole lines fit into the Buffer. But this does not work! I fill the Buffer like this:
int bytesRead = channel.read(buffer);
But that does not fill the complete Buffer! bytesRead does not equal capacity, and even worse in my case bytesRead%13 is not zero, which means it does not contain whole lines, in the end something is cut off. How can I read a certain amount of Bytes into the Buffer? In my case I need exactly n*13 Bytes so that the original lines dont get split...

bytesReadhave? Perhaps you're hitting the OS preferring to do IO in page-sized chunks... – sarnold Nov 19 '11 at 12:42while(buffer.remaining() > 0) channel.read(buffer);– Peter Lawrey Nov 19 '11 at 12:58