ByteArrayInputStream.read
Class Overview | Class Members |
This Package |
All Packages
public synchronized int read()
Returns
the next byte of data, or -1 if the end of the
stream has been reached.
Description
Reads the next byte of data from this input stream. The value
byte is returned as an int in the range
0 to 255. If no byte is available
because the end of the stream has been reached, the value
-1 is returned.
The read method of ByteArrayInputStream
cannot block.
Overrides
read in class InputStream
public synchronized int read( byte b[],
int off,
int len )
Parameters
- b
- the buffer into which the data is read.
- off
- the start offset of the data.
- len
- the maximum number of bytes read.
Returns
the total number of bytes read into the buffer, or
-1 if there is no more data because the end of
the stream has been reached.
Description
Reads up to len bytes of data into an array of bytes
from this input stream. This read method cannot block.
Overrides
read in class InputStream