Package | Description |
---|---|
java.io |
Input/Output support
|
java.util |
Utilities
|
tijos.framework.util.json |
JSON-java suppport
|
tijos.kernel.charset |
TiJOS simple charset API
|
Modifier and Type | Class and Description |
---|---|
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 |
CharArrayReader
This class permits an array of chars to be read as an input stream.
|
class |
FileReader
This class provides a convenient way to set up a
Reader
to read from a file. |
class |
FilterReader
This is the common superclass of all standard classes that filter
input.
|
class |
InputStreamReader |
class |
LineNumberReader
A buffered character-input stream that keeps track of line numbers.
|
class |
PipedReader
An input stream that reads characters from a piped writer to which it is
connected.
|
class |
PushbackReader
This subclass of
FilterReader provides the ability to
unread data from a stream. |
class |
StringReader
A character stream whose source is a string.
|
Constructor and Description |
---|
BufferedReader(Reader in)
Creates a buffering character-input stream that uses a default-sized
input buffer.
|
BufferedReader(Reader in,
int sz)
Creates a buffering character-input stream that uses an input buffer of
the specified size.
|
LineNumberReader(Reader in)
Create a new line-numbering reader, using the default input-buffer
size.
|
LineNumberReader(Reader in,
int sz)
Create a new line-numbering reader, reading characters into a buffer of
the given size.
|
PushbackReader(Reader in)
This method initializes a
PushbackReader to read from the
specified subordinate Reader with a default pushback buffer
size of 1. |
PushbackReader(Reader in,
int bufsize)
This method initializes a
PushbackReader to read from the
specified subordinate Reader with the specified buffer
size |
StreamTokenizer(Reader r)
Create a tokenizer that parses the given character stream.
|
Modifier and Type | Method and Description |
---|---|
void |
Properties.load(Reader inReader)
Reads a property list from a character stream.
|
Constructor and Description |
---|
JSONTokener(Reader reader)
Construct a JSONTokener from a Reader.
|
Modifier and Type | Class and Description |
---|---|
class |
tijos.kernel.charset.CharsetInputStreamReader |