- buffers
- the array of byte buffers to store the bytes being read.
Documentation for this section has not yet been entered.
Type Reason Java.Nio.Channels.AsynchronousCloseException if the channel is closed by another thread during this read operation. Java.Nio.Channels.ClosedByInterruptException if another thread interrupts the calling thread while the operation is in progress. The interrupt state of the calling thread is set and the channel is closed. Java.Nio.Channels.ClosedChannelException if the channel is closed. Java.IO.IOException if another I/O error occurs; details are in the message. Java.Nio.Channels.NonWritableChannelException if the channel has not been opened in a mode that permits reading.
Reads bytes from this channel into the specified array of buffers.
This method is equivalent to read(buffers, 0, buffers.length);