public abstract int read(ByteBuffer[] dsts) throws IOException ;
This method is expected to return '0' when total remaining() space in the buffers in 0. However, it returns -1 (indicating end-of-file.
------- test code -----------------------
try {
// fc is pre initialized FileChannel
System.out.println("file size = " + fc.size() + ", file pos = " + fc.position());
// perform read operation
bytesRead = fc.read(dstBuffers) ;
System.out.println( "bytesRead = " + bytesRead);
for (int i = 0 ; i < numBuffers ; i ++) {
System.out.println(i + ":" + dstBuffers[i]) ;
}
// no space left in buffers, this should return 0
// (we haven't reached EOF yet)
bytesRead = fc.read(dstBuffers) ;
System.out.println( "bytesRead = " + bytesRead);
for (int i = 0 ; i < numBuffers ; i ++) {
System.out.println(i + ":" + dstBuffers[i]) ;
}
} catch (Exception e) {
System.out.println(e) ;
}
------- results --------------------
file size = 22, file pos = 0
bytesRead = 9
0:java.nio.HeapByteBuffer[pos=3 lim=3 cap=3]
1:java.nio.HeapByteBuffer[pos=3 lim=3 cap=3]
2:java.nio.HeapByteBuffer[pos=3 lim=3 cap=3]
bytesRead = -1
0:java.nio.HeapByteBuffer[pos=3 lim=3 cap=3]
1:java.nio.HeapByteBuffer[pos=3 lim=3 cap=3]
2:java.nio.HeapByteBuffer[pos=3 lim=3 cap=3]
-------------------------
(build 1.4.0-beta-b53)
This method is expected to return '0' when total remaining() space in the buffers in 0. However, it returns -1 (indicating end-of-file.
------- test code -----------------------
try {
// fc is pre initialized FileChannel
System.out.println("file size = " + fc.size() + ", file pos = " + fc.position());
// perform read operation
bytesRead = fc.read(dstBuffers) ;
System.out.println( "bytesRead = " + bytesRead);
for (int i = 0 ; i < numBuffers ; i ++) {
System.out.println(i + ":" + dstBuffers[i]) ;
}
// no space left in buffers, this should return 0
// (we haven't reached EOF yet)
bytesRead = fc.read(dstBuffers) ;
System.out.println( "bytesRead = " + bytesRead);
for (int i = 0 ; i < numBuffers ; i ++) {
System.out.println(i + ":" + dstBuffers[i]) ;
}
} catch (Exception e) {
System.out.println(e) ;
}
------- results --------------------
file size = 22, file pos = 0
bytesRead = 9
0:java.nio.HeapByteBuffer[pos=3 lim=3 cap=3]
1:java.nio.HeapByteBuffer[pos=3 lim=3 cap=3]
2:java.nio.HeapByteBuffer[pos=3 lim=3 cap=3]
bytesRead = -1
0:java.nio.HeapByteBuffer[pos=3 lim=3 cap=3]
1:java.nio.HeapByteBuffer[pos=3 lim=3 cap=3]
2:java.nio.HeapByteBuffer[pos=3 lim=3 cap=3]
-------------------------
(build 1.4.0-beta-b53)
- relates to
-
JDK-4456276 (fs) FileChannel scattering read throws IOException with -d64 Flag
-
- Closed
-