InputStream
This class is an abstract class for all input streams
Since
0.1.0
Inheritors
Properties
Returns a BufferedInputStream that reads from this input stream.
Returns a CountingInputStream that reads from this input stream.
Returns a DataInputStream that reads from this input stream.
Returns a BufferedInputStream that reads from this input stream.
Functions
Returns a BufferedInputStream that reads from this input stream.
Returns a CountingInputStream that reads from this input stream.
Returns a DataInputStream that reads from this input stream.
Returns an estimate of the number of bytes that can be read (or skipped over) from this input stream without blocking by the next invocation of a method for this input stream.
Tests if this input stream supports the mark and reset methods.
Tests if this input stream supports the mark and reset methods.
Reads the next byte of data from the input stream.
Reads some number of bytes from the input stream and stores them into the buffer array b.
Reads up to len bytes of data from the input stream into an array of bytes.
Reads the next byte of data from the input stream.
Reads some number of bytes from the input stream and stores them into the buffer array b
. The number of bytes actually read is returned as an integer. This method blocks until input data is available, end of file is detected, or an exception is thrown.
Reads up to len
bytes of data from the input stream into an array of bytes. An attempt is made to read as many as len
bytes, but a smaller number may be read. The number of bytes actually read is returned as an integer.
Returns the number of bytes that can be read (or skipped over) from this input stream without
Returns the number of bytes that can be read (or skipped over) from this input stream without