Package org.apache.commons.io.input
package org.apache.commons.io.input
This package provides implementations of input classes, such as
InputStream
and Reader
.
-
ClassDescriptionA filter reader that filters out characters where subclasses decide which characters to filter out.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.This class is used to wrap a stream that includes an encoded
ByteOrderMark
as its first bytes.This is a stream that will only supply bytes up to a certain length - if its position goes above that, it will stop.A reader that imposes a limit to the number of characters that can be read from an underlying reader, returning EOF when this limit is reached, regardless of state of underlying reader.Broken input stream.Broken reader.InputStream
implementation which uses direct buffer to read a file to avoid extra copy of data between Java and native memory which happens when usingBufferedInputStream
.A filter reader that filters out a given character represented as anint
code point, handy to remove known junk characters from CSV files for example.A filter reader that removes a given set of characters represented asint
code points, handy to remove known junk characters from CSV files for example.InputStream
implementation that can read from String, StringBuffer, StringBuilder or CharBuffer.Reader
implementation that can read from String, StringBuffer, StringBuilder or CharBuffer.AnInputStream
that repeats provided bytes for given target byte count.A special ObjectInputStream that loads a class based on a specifiedClassLoader
rather than the system default.Closed input stream.Closed reader.Proxy stream that prevents the underlying input stream from being closed.Proxy reader that prevents the underlying reader from being closed.A decorating input stream that counts the number of bytes that have passed through the stream so far.Data written to this stream is forwarded to a stream that has been associated with this thread.AnInputStream
that infinitely repeats the provided bytes.This is an alternative toByteArrayInputStream
which removes the synchronization overhead for non-concurrent access; as such this class is not thread-safe.This class is an example for using anObservableInputStream
.Maintains the message digest.A functional, light weightInputStream
that emulates a stream of a specified size.A functional, light weightReader
that emulates a reader of a specified size.TheObservableInputStream
allows, that an InputStream may be consumed by other receivers, apart from the thread, which is reading it.Abstracts observer callback forObservableInputStream
s.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.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.Simple alternative to JDKPipedInputStream
; queue input stream provides what's written in queue output stream.Streams data from aRandomAccessFile
starting at its current position.ImplementsInputStream
to asynchronously read ahead from an underlying input stream when a specified amount of data has been read from the current buffer.InputStream
implementation that reads a character stream from aReader
and transforms it to a byte stream using a specified charset encoding.Reads lines in a file reversely (similar to a BufferedReader, but starting at the last line).Provides the contents of multiple Readers in sequence.DataInput for systems relying on little endian data formats.An input stream decorator that tags potential exceptions so that the stream that caused the exception can easily be identified.A reader decorator that tags potential exceptions so that the reader that caused the exception can easily be identified.Simple implementation of the unix "tail -f" functionality.Listener for events from aTailer
.TailerListener
Adapter.InputStream proxy that transparently writes a copy of all bytes read from the proxied stream to a given OutputStream.Reader proxy that transparently writes a copy of all characters read from the proxied reader to a given Reader.An observer with timestamps.A filtering input stream that ensures the content will have UNIX-style line endings, LF.Package-private factory forUnsupportedOperationException
to provide messages with consistent formatting.This is an alternative toByteArrayInputStream
which removes the synchronization overhead for non-concurrent access; as such this class is not thread-safe.A filtering input stream that ensures the content will have Windows line endings, CRLF.Character stream that handles all the necessary Voodoo to figure out the charset encoding of the XML document within the stream.The XmlStreamReaderException is thrown by the XmlStreamReader constructors if the charset encoding can not be determined according to the XML 1.0 specification and RFC 3023.