Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4420794

FileChannel.read() returns incorrect return value

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P2 P2
    • 1.4.0
    • 1.4.0
    • core-libs
    • beta
    • sparc
    • solaris_7
    • Verified

      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)

            mmcclosksunw Michael Mccloskey (Inactive)
            hvilekar Harshad Vilekar
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: