| Package | Description |
|---|---|
| java.io |
Back 2 Browser Bytecode Translator
Copyright (C) 2012 Jaroslav Tulach
|
| java.util |
Back 2 Browser Bytecode Translator
Copyright (C) 2012 Jaroslav Tulach
|
| 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 |
FileReader
Convenience class for reading character files.
|
class |
FilterReader
Abstract class for reading filtered character streams.
|
class |
InputStreamReader
An InputStreamReader is a bridge from byte streams to character streams: It
reads bytes and decodes them into characters using a specified
. |
class |
LineNumberReader
A buffered character-input stream that keeps track of line numbers.
|
class |
StringReader
A character stream whose source is a string.
|
| Modifier and Type | Field and Description |
|---|---|
protected Reader |
FilterReader.in
The underlying character-input stream.
|
| 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.
|
FilterReader(Reader in)
Creates a new filtered reader.
|
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.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Properties.load(Reader reader)
Reads a property list (key and element pairs) from the input
character stream in a simple line-oriented format.
|
| Constructor and Description |
|---|
PropertyResourceBundle(Reader reader)
Creates a property resource bundle from a
Reader. |
Copyright © 2015 API Design. All Rights Reserved.