BufferedWriter Class
Package: java.io
The BufferedWriter class connects to a FileWriter but adds output buffering.
In most cases, you won’t use methods of this class directly. Instead, you’ll use this class to connect to a PrintWriter, which has more useful methods for writing output data to a character stream. As a result, this section shows only the constructor for the BufferedWriter class and not its methods. For more information, see PrintWriter Class.
Constructor
|
Constructor |
Description |
|
|
Creates a buffered reader from any object that extends the |
The following example shows how to create a BufferedWriter object that connects to a text file:
File f;
FileWriter fwriter;
BufferedWriter bwriter;
f = new File(“myfile.txt”);
fwriter = new FileWriter(f);
bwriter = new BufferedWriter(fwriter);
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access