Interface | Description |
---|---|
Checksum |
Interface to compute a data checksum used by checked input/output streams.
|
DataProcessor | |
FastStream | |
FileClipboard.FileClipboardSource | |
FileConstants | |
FilenameFilter | |
FilePermissions | |
IBlockInput | |
IBlockOutput | |
ICompressed | |
TextCodec |
This class is used by the InputStreamReader and OutputStreamWriter classes to convert Unicode text (Strings)
into bytes, encodeText(), and to convert encoded bytes into Unicode text, decodeText().
|
VolumeConstants |
Class | Description |
---|---|
AsciiCodec | |
BOMInputStream |
This class is used to handle an InputStream that may or may not have Byte Order Mark (BOM) bytes as the
first bytes of the input.
|
ByteArrayRandomStream |
This is a RandomStream object that uses a ByteArray for storage
of data.
|
CompressedRandomStream |
A CompressedRandomStream is a read-only RandomStream that has been compressed for storage, but
optimized for random access reading.
|
CRC32 |
Computes CRC32 data checksum of a data stream.
|
Deflater |
This is the Deflater class.
|
DeflaterOutputStream |
This is a special FilterOutputStream deflating the bytes that are
written through it.
|
EncodedStreamReader |
This class reads characters from a byte input stream.
|
EncodedStreamWriter |
This class writes characters to an output stream that is byte oriented
It converts the chars that are written to bytes using an encoding layer,
which is specific to a particular encoding standard.
|
FakeFileSystem |
A FakeFileSystem is used to simulate a FileSystem, possibly starting from another read-only File
system.
|
File |
The base implementation of this class represents a File on the local file system,
but it is different from a java.io.File in a number of ways:
1.
|
FileAdapter | |
FileChooserParameters | |
FileClipboard | |
FileComparer |
A FileComparer compares two File objects according to criteria which include:
name, length, type and modification date.
|
FileRandomStream | |
FileSpecs |
This holds information about a file.
|
Inflater |
Inflater is used to decompress data that has been compressed according
to the "deflate" standard described in rfc1950.
|
InflaterInputStream |
This filter stream is used to decompress data compressed in the "deflate"
format.
|
Io | |
JavaUtf8Codec |
This Codec is used to translate between 16-bit Unicode Characters (Java "char" data)
and 8-bit bytes using the Java Modified UTF-8 method, with the restriction that unicode
characters will only be in the range 0x0000 and 0xffff.
|
MarkableStream | |
MemoryStream |
A MemoryStream is a Stream that stores all data written to it using standard Stream write() calls,
in an array of bytes and then allows that data to be read out again, usually
through standard Stream read() calls.
|
NullInputStream | |
NullOutputStream | |
PartialInputStream |
This class is used to get a "sub-stream" of data from another Stream.
|
PNGEncoder |
This class can be used to save a PNG encoded image.
|
RandomStream | |
RewindableStream |
A RewindableStream adapts an InputStream so that a particular section of
the stream (i.e. a set number of bytes, starting from the first byte) can
be accessed randomly, while the remaining bytes can only be accessed
sequentially.
|
SafeFile |
This is used to "safely" modify the contents of a file.
|
SerialPort |
SerialPort accesses a device's or PC's serial port.
|
SerialPortSpecs |
SerialPortOptions is a single object that specifies all the currently supported Serial Port
options.
|
StreamUtils | |
TextCodecBOMHandler | |
TextReader | |
TextWriter |
A TextWriter is a Writer that allows the use of a TextCodec for text output.
|
TreeConfigFile | |
TreeConfigNode | |
Utf16Codec | |
Utf8Codec |
This Codec is used to translate between 16-bit Unicode Characters (Java "char" data)
and 8-bit bytes using the Standard UTF-8 method, with the restriction that unicode
characters will only be in the range 0x0000 and 0xffff.
|
ZepFile |
An ZepFile is a file that represents a set of small items (such as image icons) that have been compressed
as a single array of bytes using a GZIP configured Deflater (one with noWrap set true).
|
Exception | Description |
---|---|
CorruptedDataException | |
ReadOnlyException |
This exception is thrown if an attempt to open some stream or file in ReadWrite mode
was attempted, but only ReadOnly mode is allowed.
|