This package provides implementations of input classes, such as
InputStream
and Reader
.
See: Description
Class Summary | |
---|---|
AutoCloseInputStream | Proxy stream that closes and discards the underlying stream as soon as the end of input has been reached or when the stream is explicitly closed. |
CharSequenceReader | Reader implementation that can read from String, StringBuffer, StringBuilder or CharBuffer. |
ClassLoaderObjectInputStream |
A special ObjectInputStream that loads a class based on a specified
ClassLoader rather than the system default.
|
ClosedInputStream | Closed input stream. |
CloseShieldInputStream | Proxy stream that prevents the underlying input stream from being closed. |
CountingInputStream | A decorating input stream that counts the number of bytes that have passed through the stream so far. |
DemuxInputStream | Data written to this stream is forwarded to a stream that has been associated with this thread. |
NullInputStream | A functional, light weight InputStream that emulates a stream of a specified size. |
NullReader | A functional, light weight Reader that emulates a reader of a specified size. |
ProxyInputStream | A Proxy stream which acts as expected, that is it passes the method calls on to the proxied stream and doesn't change which methods are being called. |
ProxyReader | A Proxy stream which acts as expected, that is it passes the method calls on to the proxied stream and doesn't change which methods are being called. |
SwappedDataInputStream | DataInput for systems relying on little endian data formats. |
TeeInputStream | InputStream proxy that transparently writes a copy of all bytes read from the proxied stream to a given OutputStream. |
This package provides implementations of input classes, such as
InputStream
and Reader
.