Spec for java.nio.channels.ScatteringByteChannel.read(ByteBuffer[] dsts) says
long read(ByteBuffer[] dsts)
throws IOException
Reads a sequence of bytes from this channel into the given buffers.
An invocation of this method of the form c.read(dsts) behaves in exactly the same manner as the invocation
c.read(dsts, 0, srcs.length);
^^^^^^^^^^^
It should be as dsts.length.
long read(ByteBuffer[] dsts)
throws IOException
Reads a sequence of bytes from this channel into the given buffers.
An invocation of this method of the form c.read(dsts) behaves in exactly the same manner as the invocation
c.read(dsts, 0, srcs.length);
^^^^^^^^^^^
It should be as dsts.length.
- duplicates
-
JDK-6384413 javadoc for ScatteringByteChannel.read(ByteBuffer[]) incorrect
-
- Closed
-