Writers and Readers Classes Flashcards

1
Q

A character stream that operates on strings.

A

StringReader

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

This class is a bridge between character streams and byte streams.

A

InputStreamReader and OutputStreamWriter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Derived class of OutputStreamWriter that provides support for reading character files.

A

FileReader

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

For “piped” reading of characters.

A

PipedReader

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Abstract base class for streams that support a filtering operation applied on data as characters that are read from the stream.

A

FilterReader

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Derived class of FilterReader that allows read characters to be pushed back into the stream.

A

PushbackReader

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Adds buffering to the underlying character stream so that there is no need to access the underlying file system for each read and write operation.

A

BufferedReader

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Derived class of BufferedReader that keeps track of line numbers as the characters are read from the character stream.

A

LineNumberReader

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

A character stream that collects the output in a string buffer, which can be used for creating a string.

A

StringWriter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Derived class of InputStreamReader that provides support for writing character files.

A

FileWriter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

For “piped” writing of characters

A

PipedWriter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Abstact base class for streams that supports a filtering operation applied on data such as characters when writing them to the character stream.

A

FilterWriter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Supports formatted printing of characters to the output character stream.

A

PrintWriter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Adds buffering to the underlying character stream so that there is no need to access the underlying file system for each read and write operation.

A

BufferedWriter.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly