2
votes
2answers
226 views

I/O Operation On Channels Using ByteBuffer - Performance Comparision

I want to perform I/O operation on channels using ByteBuffer. Finally I came up with three solutions: FileChannel inChannel = new FileInputStream("input.txt").getChannel(); FileChannel outChannel = ...