Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are PrintWriter and FileWriter in Java the same and no matter which one to use? So far I have used both because their results are the same. Is there some special cases where it makes sense to prefer one over the other?

public static void main(String[] args) {

    File fpw = new File("printwriter.txt");
    File fwp = new File("filewriter.txt");
    try {
        PrintWriter pw = new PrintWriter(fpw);
        FileWriter fw = new FileWriter(fwp);
        pw.write("printwriter text\r\n");
        fw.write("filewriter text\r\n");
        pw.close();
        fw.close();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

}
share|improve this question
2  
Well, they have different methods, and do different things. Have you read the javadoc for each one? – skaffman Apr 22 '11 at 20:54
1  
just remember to flush() before you close(). – Koekiebox Apr 22 '11 at 20:55
2  
close ensures flush. – Bozho Apr 22 '11 at 20:56
7  
@Bozho: To be honest, I assumed Koekiebox was making subtle bathroom humor. – Powerlord Apr 22 '11 at 21:01

5 Answers

up vote 4 down vote accepted

According to coderanch.com, if we combine the answers we get:

FileWriter is the character representation of IO. That means it can be used to write characters. Internally FileWriter would use the default character set of the underlying OS and convert the characters to bytes and write it to the disk.

PrintWriter & FileWriter.

Similarities

a) Both extend from Writer. b) Both are character representation classes, that means they work with characters and convert them to bytes using default charset.

Differences

a) FileWriter throws IOException in case of any IO failure, this is a checked exception. b) None of the PrintWriter methods throws IOException , instead they set a boolean flag which can be obtained using checkError(). c) PrintWriter invokes flush after every byte of data is written , automatically. In case of FileWriter, invoker has to take care of invoking flush.

Difference between PrintStream and OutputStream: Similar to above explanation, just replace character with byte.

PrintWriter has following methods :

close()
flush()
format()
printf()
print()
println()
write()

and constructors are :

File (as of Java 5) String (as of Java 5) OutputStream Writer

while FileWriter having following methods :

close()
flush()
write()

and constructors are :

File
String 

Link: http://www.coderanch.com/t/418148/java-programmer-SCJP/certification/Information-PrintWriter-FileWriter

share|improve this answer

Both of these use a FileOutputStream internally:

public PrintWriter(File file) throws FileNotFoundException {
this(new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file))),
     false);
}



public FileWriter(File file) throws IOException {
super(new FileOutputStream(file));
}

but the main difference is that PrintWriter offers special methods:

Prints formatted representations of objects to a text-output stream. This class implements all of the print methods found in PrintStream. It does not contain methods for writing raw bytes, for which a program should use unencoded byte streams.

Unlike the PrintStream class, if automatic flushing is enabled it will be done only when one of the println, printf, or format methods is invoked, rather than whenever a newline character happens to be output. These methods use the platform's own notion of line separator rather than the newline character.

share|improve this answer

A PrintWriter has a different concept of error handling. You need to call checkError() instead of using try/catch blocks.

share|improve this answer

The java.io.PrintWriter in Java5+ allowed for a convenience method/constructor that writes to file. From the Javadoc;

Creates a new PrintWriter, without automatic line flushing, with the specified file. This convenience constructor creates the necessary intermediate OutputStreamWriter, which will encode characters using the default charset for this instance of the Java virtual machine.

share|improve this answer

PrintWriter doesn't throw IOException.You should call checkError() method for this purpose.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.