I am using java.nio to copy a file, it copies fine except for the fact that there is a line of []s at the end of the file.
Here is my code:
source (the source channel)
source.read(buffer);
buffer.flip();
mbb.put(buffer)
mbb is MappedByteBuffer
Source Channel:
source = new FileInputStream(original(this is a File)).getChannel();
MappedByteBuffer:
source.map(FileChannel.MapMode.READ_WRITE, 0, 1024);
MappedByteBuffer? (also, I think you meanMappedByteBuffernotMappedByteArray) – am75 Sep 30 '11 at 2:33MappedByteBuffer. Added what you said above. – LanguagesNamedAfterCofee Sep 30 '11 at 2:40