- buf - Variable in class java.io.BufferedInputStream
-
The internal buffer array where the data is stored.
- buf - Variable in class java.io.BufferedOutputStream
-
The internal buffer where data is stored.
- buf - Variable in class java.io.CharArrayReader
-
The character buffer.
- buf - Variable in class java.io.PushbackInputStream
-
The pushback buffer.
- buffer - Variable in class java.io.PipedInputStream
-
The circular buffer into which incoming data is placed.
- BufferedInputStream - Class in java.io
-
A BufferedInputStream
adds
functionality to another input stream-namely,
the ability to buffer the input and to
support the mark
and reset
methods.
- BufferedInputStream(InputStream) - Constructor for class java.io.BufferedInputStream
-
Creates a BufferedInputStream
and saves its argument, the input stream
in
, for later use.
- BufferedInputStream(InputStream, int) - Constructor for class java.io.BufferedInputStream
-
Creates a BufferedInputStream
with the specified buffer size,
and saves its argument, the input stream
in
, for later use.
- BufferedOutputStream - Class in java.io
-
The class implements a buffered output stream.
- BufferedOutputStream(OutputStream) - Constructor for class java.io.BufferedOutputStream
-
Creates a new buffered output stream to write data to the
specified underlying output stream.
- BufferedOutputStream(OutputStream, int) - Constructor for class java.io.BufferedOutputStream
-
Creates a new buffered output stream to write data to the
specified underlying output stream with the specified buffer
size.
- BufferedReader - Class in java.io
-
Reads text from a character-input stream, buffering characters so as to provide for the efficient reading of
characters, arrays, and lines.
- BufferedReader(Reader, int) - Constructor for class java.io.BufferedReader
-
Creates a buffering character-input stream that uses an input buffer of the specified size.
- BufferedReader(Reader) - Constructor for class java.io.BufferedReader
-
Creates a buffering character-input stream that uses a default-sized input buffer.
- BufferedWriter - Class in java.io
-
Writes text to a character-output stream, buffering characters so as to provide for the efficient writing of single
characters, arrays, and strings.
- BufferedWriter(Writer) - Constructor for class java.io.BufferedWriter
-
Creates a buffered character-output stream that uses a default-sized output buffer.
- BufferedWriter(Writer, int) - Constructor for class java.io.BufferedWriter
-
Creates a new buffered character-output stream that uses an output buffer of the given size.