|
CDC 1.1.2 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use Reader | |
| java.io | Provides for system input and output through data streams, serialization and the file system. |
| Uses of Reader in java.io |
| Subclasses of Reader in java.io | |
class |
BufferedReader
Read 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 |
InputStreamReader
An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and translates them into characters according to a specified character encoding. |
| Constructors in java.io with parameters of type Reader | |
StreamTokenizer(Reader r)
Create a tokenizer that parses the given character stream. |
|
BufferedReader(Reader in,
int sz)
Create a buffering character-input stream that uses an input buffer of the specified size. |
|
BufferedReader(Reader in)
Create a buffering character-input stream that uses a default-sized input buffer. |
|
|
CDC 1.1.2 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||