Package java.io

Class BufferedInputStream

extends FilterInputStreamInputStreamObject

Adds the ability to buffer the input and the mark and reset methods to another input stream. When a BufferedInputStream is created, an internal buffer array is created. As bytes from the stream are read or skipped, the internal buffer is refilled as necessary from the contained input stream, many bytes at a time. The mark operation remembers a point in the input stream and the reset operation causes all the bytes read since the most recent mark operation to be reread before new bytes are taken from the contained input stream.

Public Constructors

Public Methods

Methods inherited from java.io.FilterInputStream

Methods inherited from java.io.InputStream

Methods inherited from java.lang.Object

_INSERT_INHERITED_METHOD_ENTRY_HERE_

_INSERT_FIELDS_ENTRY_HERE_