Package | Description |
---|---|
java.io |
Input/Output support
|
java.util |
Utilities
|
tijos.kernel.charset |
TiJOS simple charset API
|
Modifier and Type | Class and Description |
---|---|
class |
BufferedOutputStream
This class accumulates bytes written in a buffer instead of immediately
writing the data to the underlying output sink.
|
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 |
ByteArrayOutputStream
This class allows data to be written to a byte array buffer and
and then retrieved by an application.
|
class |
CharArrayWriter
This class allows data to be written to a char array buffer and
and then retrieved by an application.
|
class |
DataOutputStream
A data output stream lets an application write primitive Java data
types to an output stream in a portable way.
|
class |
FileOutputStream
Writes a stream of bytes to a file.
|
class |
FileWriter
This is a convenience class for writing to files.
|
class |
FilterOutputStream
This class is the common superclass of output stream classes that
filter the output they write.
|
class |
FilterWriter
This class is the common superclass of output character stream classes
that filter the output they write.
|
class |
OutputStream
This abstract class forms the base of the hierarchy of classes that
write output as a stream of bytes.
|
class |
OutputStreamWriter |
class |
PipedOutputStream
This class writes its bytes to a
PipedInputStream 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 |
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.CharsetOutputStreamWriter
Abstract Single Byte Character Set OutputStream Writer.
|