BufferedInputStream
A BufferedInputStream is created from an InputStream and buffers the data to make reading faster. (It's recommended to use this class if you want to read data from a InputStream)
Since
0.1.0
Parameters
The InputStream to buffer
The size of the buffer (default: 8192)
See also
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.
Closes the BufferedInputStream and the InputStream it was created from
Checks if the input stream supports marking/resetting
Reads bytes from the BufferedInputStream into the given array
Reads up to len bytes of data from the input stream into an array of bytes.