Package | Description |
---|---|
java.io |
Input/Output support
|
java.util |
Utilities
|
tijos.kernel.charset |
TiJOS simple charset API
|
Modifier and Type | Class and Description |
---|---|
class |
BufferedInputStream
This subclass of
FilterInputStream buffers input from an
underlying implementation to provide a possibly more efficient read
mechanism. |
class |
BufferedOutputStream
This class accumulates bytes written in a buffer instead of immediately
writing the data to the underlying output sink.
|
class |
BufferedReader
Reads text from a character-input stream, buffering characters so as to
provide for the efficient reading of characters, arrays, and lines.
|
class |
BufferedWriter
Writes text to a character-output stream, buffering characters so as to
provide for the efficient writing of single characters, arrays, and strings.
|
class |
ByteArrayInputStream
A
ByteArrayInputStream contains
an internal buffer that contains bytes that
may be read from the stream. |
class |
ByteArrayOutputStream
This class allows data to be written to a byte array buffer and
and then retrieved by an application.
|
class |
CharArrayReader
This class permits an array of chars to be read as an input stream.
|
class |
CharArrayWriter
This class allows data to be written to a char array buffer and
and then retrieved by an application.
|
class |
DataInputStream
A data input stream lets an application read primitive Java data
types from an underlying input stream in a machine-independent
way.
|
class |
DataOutputStream
A data output stream lets an application write primitive Java data
types to an output stream in a portable way.
|
class |
FileInputStream
Reads a stream of bytes from a file.
|
class |
FileOutputStream
Writes a stream of bytes to a file.
|
class |
FileReader
This class provides a convenient way to set up a
Reader
to read from a file. |
class |
FileWriter
This is a convenience class for writing to files.
|
class |
FilterInputStream
This is the common superclass of all standard classes that filter
input.
|
class |
FilterOutputStream
This class is the common superclass of output stream classes that
filter the output they write.
|
class |
FilterReader
This is the common superclass of all standard classes that filter
input.
|
class |
FilterWriter
This class is the common superclass of output character stream classes
that filter the output they write.
|
class |
InputStream
This abstract class forms the base of the hierarchy of classes that read
input as a stream of bytes.
|
class |
InputStreamReader |
class |
LineNumberReader
A buffered character-input stream that keeps track of line numbers.
|
class |
OutputStream
This abstract class forms the base of the hierarchy of classes that
write output as a stream of bytes.
|
class |
OutputStreamWriter |
class |
PipedInputStream
An input stream that reads its bytes from an output stream
to which it is connected.
|
class |
PipedOutputStream
This class writes its bytes to a
PipedInputStream to
which it is connected. |
class |
PipedReader
An input stream that reads characters from a piped writer to which it is
connected.
|
class |
PipedWriter
This class writes its chars to a
PipedReader to
which it is connected. |
class |
PrintStream
This class prints Java primitive values and object to a stream as
text.
|
class |
PrintWriter
This class prints Java primitive values and objects to a stream as
text.
|
class |
PushbackInputStream
This subclass of
FilterInputStream provides the ability to
unread data from a stream. |
class |
PushbackReader
This subclass of
FilterReader provides the ability to
unread data from a stream. |
class |
Reader
This abstract class forms the base of the hierarchy of classes that read
input as a stream of characters.
|
class |
SequenceInputStream
This class merges a sequence of multiple
InputStream 's in
order to form a single logical stream that can be read by applications
that expect only one stream. |
class |
StringReader
A character stream whose source is a string.
|
class |
StringWriter
A character stream that collects its output in a string buffer, which can
then be used to construct a string.
|
class |
Writer
This abstract class forms the base of the hierarchy of classes that
write output as a stream of chars.
|
Modifier and Type | Class and Description |
---|---|
class |
Formatter
A Java formatter for
printf -style format strings,
as seen in the C programming language. |
Modifier and Type | Class and Description |
---|---|
class |
tijos.kernel.charset.CharsetInputStreamReader |
class |
tijos.kernel.charset.CharsetOutputStreamWriter
Abstract Single Byte Character Set OutputStream Writer.
|