Package | Description |
---|---|
java.io |
Input/Output support
|
tijos.framework.util.json |
JSON-java suppport
|
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 |
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.
|
Modifier and Type | Method and Description |
---|---|
Writer |
Writer.append(char c) |
Writer |
Writer.append(CharSequence cs) |
Writer |
Writer.append(CharSequence cs,
int start,
int end) |
Modifier and Type | Method and Description |
---|---|
void |
CharArrayWriter.writeTo(Writer out)
This method writes all the chars that have been written to this stream
from the internal buffer to the specified
Writer . |
Constructor and Description |
---|
BufferedWriter(Writer out)
Creates a buffered character-output stream that uses a default-sized
output buffer.
|
BufferedWriter(Writer out,
int sz)
Creates a new buffered character-output stream that uses an output
buffer of the given size.
|
PrintWriter(Writer wr)
This method intializes a new
PrintWriter object to write
to the specified output sink. |
PrintWriter(Writer wr,
boolean autoflush)
This method intializes a new
PrintWriter object to write
to the specified output sink. |
Modifier and Type | Method and Description |
---|---|
static Writer |
JSONObject.quote(String string,
Writer w) |
Writer |
JSONObject.write(Writer writer)
Write the contents of the JSONObject as JSON text to a writer.
|
Writer |
JSONArray.write(Writer writer)
Write the contents of the JSONArray as JSON text to a writer.
|
Writer |
JSONObject.write(Writer writer,
int indentFactor,
int indent)
Write the contents of the JSONObject as JSON text to a writer.
|
Writer |
JSONArray.write(Writer writer,
int indentFactor,
int indent)
Write the contents of the JSONArray as JSON text to a writer.
|
Modifier and Type | Method and Description |
---|---|
static Writer |
JSONObject.quote(String string,
Writer w) |
Writer |
JSONObject.write(Writer writer)
Write the contents of the JSONObject as JSON text to a writer.
|
Writer |
JSONArray.write(Writer writer)
Write the contents of the JSONArray as JSON text to a writer.
|
Writer |
JSONObject.write(Writer writer,
int indentFactor,
int indent)
Write the contents of the JSONObject as JSON text to a writer.
|
Writer |
JSONArray.write(Writer writer,
int indentFactor,
int indent)
Write the contents of the JSONArray as JSON text to a writer.
|
Constructor and Description |
---|
JSONWriter(Writer w)
Make a fresh JSONWriter.
|
Modifier and Type | Class and Description |
---|---|
class |
tijos.kernel.charset.CharsetOutputStreamWriter
Abstract Single Byte Character Set OutputStream Writer.
|