Package | Description |
---|---|
java.io |
Input/Output support
|
java.lang |
Core Java classes
|
java.util |
Utilities
|
tijos.kernel.charset |
TiJOS simple charset API
|
Modifier and Type | Class and Description |
---|---|
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 |
CharArrayWriter
This class allows data to be written to a char array buffer and
and then retrieved by an application.
|
class |
FileWriter
This is a convenience class for writing to files.
|
class |
FilterWriter
This class is the common superclass of output character stream classes
that filter the output they write.
|
class |
OutputStreamWriter |
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 |
StringBuilder
An expandable string of characters.
|
Modifier and Type | Method and Description |
---|---|
Appendable |
Appendable.append(char c)
Appends the Unicode character, c, to this
Appendable
object. |
Appendable |
Appendable.append(CharSequence seq)
Appends the specified sequence of Unicode characters to this
Appendable object. |
Appendable |
Appendable.append(CharSequence seq,
int start,
int end)
Appends the specified subsequence of Unicode characters to this
Appendable object, starting and ending at the specified
positions within the sequence. |
Modifier and Type | Method and Description |
---|---|
Appendable |
Formatter.out()
Returns the output stream used by this formatter.
|
Constructor and Description |
---|
Formatter(Appendable app)
Constructs a new
Formatter using the default
locale and the specified output stream. |
Formatter(Appendable app,
Locale loc)
Constructs a new
Formatter using the specified
locale and the specified output stream. |
Modifier and Type | Class and Description |
---|---|
class |
tijos.kernel.charset.CharsetOutputStreamWriter
Abstract Single Byte Character Set OutputStream Writer.
|