Interface | Description |
---|---|
Seekable |
Interface for seekable streams.
|
Class | Description |
---|---|
CompoundReader |
A Reader implementation that can read from multiple sources.
|
FastByteArrayOutputStream |
An unsynchronized
ByteArrayOutputStream implementation. |
FileCacheSeekableStream |
A
SeekableInputStream implementation that caches data in a temporary File . |
FilenameMaskFilter | Deprecated |
FileSeekableStream |
A
SeekableInputStream implementation that uses random access directly to a File . |
FileUtil |
A utility class with some useful file and i/o related methods.
|
LittleEndianDataInputStream |
A little endian input stream reads two's complement,
little endian integers, floating point numbers, and characters
and returns them as Java primitive types.
|
LittleEndianDataOutputStream |
A little endian output stream writes primitive Java numbers
and characters to an output stream in a little endian format.
|
LittleEndianRandomAccessFile |
A replacement for
RandomAccessFile that is capable of reading
and writing data in little endian byte order. |
MemoryCacheSeekableStream |
A
SeekableInputStream implementation that caches data in memory. |
NullInputStream |
An
InputStream that contains no bytes. |
NullOutputStream |
An
OutputStream implementation that works as a sink. |
RandomAccessStream |
A data stream that is both readable and writable, much like a
RandomAccessFile , except it may be backed by something other than a file. |
SeekableInputStream |
Abstract base class for
InputStream s implementing the Seekable interface. |
SeekableOutputStream |
Abstract base class for
OutputStream s implementing the
Seekable interface. |
StringArrayReader |
StringArrayReader
|
SubStream |
An
InputStream reading up to a specified number of bytes from an
underlying stream. |
WriterOutputStream |
Wraps a
Writer in an OutputStream . |
Copyright © 2017. All rights reserved.