Difference between java.io.PrintWriter and java.io.BufferedWriter?

JavaFileStreamFilereaderBufferedreader

Java Problem Overview


Please look through code below:

// A.class
File file = new File("blah.txt");
FileWriter fileWriter = new FileWriter(file);
PrintWriter printWriter = new PrintWriter(fileWriter);

// B.class
File file = new File("blah.txt");
FileWriter fileWriter = new FileWriter(file);
BufferedWriter bWriter = new BufferedWriter(fileWriter);

What is the difference between these two methods?

When should we use PrintWriter over BufferedWriter?

Java Solutions


Solution 1 - Java

PrintWriter gives more methods (println), but the most important (and worrying) difference to be aware of is that it swallows exceptions.

You can call checkError later on to see whether any errors have occurred, but typically you'd use PrintWriter for things like writing to the console - or in "quick 'n dirty" apps where you don't want to be bothered by exceptions (and where long-term reliability isn't an issue).

I'm not sure why the "extra formatting abilities" and "don't swallow exceptions" aspects are bundled into the same class - formatting is obviously useful in many places where you don't want exceptions to be swallowed. It would be nice to see BufferedWriter get the same abilities at some point...

Solution 2 - Java

The API reference for BufferedWriter and PrintWriter detail the differences.

The main reason to use the PrintWriter is to get access to the printXXX methods like println(). You can essentially use a PrintWriter to write to a file just like you would use System.out to write to the console.

A BufferedWriter is an efficient way to write to a file (or anything else), as it will buffer the characters in Java memory before (probably, depending on the implementation) dropping to C to do the writing to the file.

There is no such concept as a "PrintReader"; the closest you will get is probably java.util.Scanner.

Solution 3 - Java

As said in TofuBeer's answer both have their specialties. To take the full advantage of PrintWriter (or any other writer) but also use buffered writing you can wrap the BufferedWriter with the needed one like this:

PrintWriter writer = new PrintWriter(
                         new BufferedWriter (
                             new FileWriter("somFile.txt")));

Solution 4 - Java

PrintWriter just exposes the print methods on any Writer in character mode.

BufferedWriter is more efficient than , according to its buffered methods. And it comes with a newLine() method, depending of your system platform, to manipulate text files correctly.

The BufferedReader permits to read a text from file, with bytes converted in characters. It allows to read line by line.

There is no PrintReader, you have to choose another Reader implementation according to the format of your input.

Solution 5 - Java

PrintWriter is the most enhanced Writer to write Character data to a file.

The main advantage of PrintWriter over FileWriter and BufferedWriter is:

  1. PrintWriter can communicate directly with the file, and can communicate via some Writer object also.

PrintWriter printwriter = new PrintWriter("blah.txt");

(or)

FileWriter filewriter = new FileWriter("blah.txt");
PrintWriter printwiter = new PrintWriter(filewriter);

2. We can write any type of Primitive data directly to the file (because we have additional overloaded versions of PrintWriter methods i.e., print() and println()).

`printwriter.print(65); //65`    
`bufferedwriter.write(65); //A`    
`printwriter.println(true); //true`

Solution 6 - Java

In general, a Writer sends its output immediately to the underlying character or byte stream. Unless prompt output is required, it is advisable to wrap a BufferedWriter around any Writer whose write() operations may be costly, such as FileWriters and OutputStreamWriters. For example,

Note: Text content in the code blocks is automatically word-wrapped

PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter("foo.out")));

will buffer the PrintWriter's output to the file. Without buffering, each invocation of a print() method would cause characters to be converted into bytes that would then be written immediately to the file, which can be very inefficient.

Solution 7 - Java

BufferedWriter - Writes text to an output character stream, buffering characters from a character stream. PrintWriter - Prints formatted representations of objects to a text output stream.

Solution 8 - Java

I think that the reason behind using PrintWriter is already mentioned above but one of the important reason is you an pass a file object directly to the PrintWriter constructor which makes it easy to use it.

File file=new File(“newfile.txt”);
PrintWriter pw=new PrintWriter(file);

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questioni2ijeyaView Question on Stackoverflow
Solution 1 - JavaJon SkeetView Answer on Stackoverflow
Solution 2 - JavaTofuBeerView Answer on Stackoverflow
Solution 3 - JavaKai HuppmannView Answer on Stackoverflow
Solution 4 - JavaLiodaView Answer on Stackoverflow
Solution 5 - JavaSyed MaqsoodView Answer on Stackoverflow
Solution 6 - JavaRohit GoyalView Answer on Stackoverflow
Solution 7 - JavaVidyut SinghaiView Answer on Stackoverflow
Solution 8 - JavaAjayLohaniView Answer on Stackoverflow