-
Classes in java.io that implement Readable
| Modifier and Type |
Class |
Description |
class |
BufferedReader |
Wraps an existing Reader and buffers the input.
|
class |
CharArrayReader |
A specialized Reader for reading the contents of a char array.
|
class |
FileReader |
A specialized Reader that reads from a file in the file system.
|
class |
FilterReader |
Wraps an existing Reader and performs some transformation on the
input data while it is being read.
|
class |
InputStreamReader |
A class for turning a byte stream into a character stream.
|
class |
LineNumberReader |
Wraps an existing Reader and counts the line terminators encountered
while reading the data.
|
class |
PipedReader |
Receives information on a communications pipe.
|
class |
PushbackReader |
Wraps an existing Reader and adds functionality to "push back"
characters that have been read, so that they can be read again.
|
class |
Reader |
The base class for all readers.
|
class |
StringReader |
A specialized Reader that reads characters from a String in
a sequential manner.
|
-
-
Constructors in java.util with parameters of type Readable
| Constructor |
Description |
Scanner(Readable src) |
Creates a Scanner with the specified Readable as input.
|
-