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

What's the simplest way to create and write to a file in Java?

I know this is a very basic question, but the web is full of different answers for different versions of Java and it would be nice to have an answer here on StackOverflow.

share|improve this question

7 Answers

up vote 22 down vote accepted

Creating a text file (note that this will overwrite the file if it already exists):

PrintWriter writer = new PrintWriter("the-file-name.txt", "UTF-8");
writer.println("The first line");
writer.println("The second line");
writer.close();

Creating a binary file (will also overwrite the file):

byte dataToWrite[] = //...
FileOutputStream out = new FileOutputStream("the-file-name");
out.write(dataToWrite);
out.close();
share|improve this answer
1  
Worth noting PrintWriter will truncate the filesize to zero if the file already exists – Covar May 21 '10 at 20:16
1  
PrintWriter can be (and often is) used, but is not (conceptually) the right class for the job. From the docs: "PrintWriter prints formatted representations of objects to a text-output stream. " Bozho's answer is more correct, though it looks cumbersome (you can always wrap it in some utility method). – leonbloy May 21 '10 at 20:40
@mangest, yes better now ;) – Michael Borgwardt May 21 '10 at 22:22
Writer writer = null;

try {
    writer = new BufferedWriter(new OutputStreamWriter(
          new FileOutputStream("filename.txt"), "utf-8"));
    writer.writeln("Something");
} catch (IOException ex){
  // report
} finally {
   try {writer.close();} catch (Exception ex) {}
}

See also here (includes NIO2)

share|improve this answer
This is the correct way to right to a text file, though the BufferedWriter filter is not always beneficial, and the encoding should be passed as argument. +1 for specifyng the encoding, though. – leonbloy May 21 '10 at 20:43
@leonbloy I know this is an old comment, but if anyone sees this would you mind explaining why is not "always beneficial"? At least here it says "top efficient" docs.oracle.com/javase/1.5.0/docs/api/java/io/… – Juan Feb 12 at 17:27

If you wish to have a relatively pain-free experience you can also have a look at the apache commons IO package, more specifically the FileUtils class.

Never forget to check third-party libraries. Yoda time for date manipulation, StringUtils for common string operations and such can make your code more readable.

Java is a great language, but the standard library is sometimes a bit low-level. Powerful, but low-level nonetheless.

share|improve this answer
public class Program {
    public static void main(String[] args) {
        String text = "Hello world";
        try {
          File file = new File("example.txt");
          BufferedWriter output = new BufferedWriter(new FileWriter(file));
          output.write(text);
          output.close();
        } catch ( IOException e ) {
           e.printStackTrace();
        }
    }
}
share|improve this answer

If you for some reason want to separate the act of creating and writing, the Java equivalent of touch is

try {
   //create a file named "testfile.txt" in the current working directory
   File myFile = new File("testfile.txt");
   if ( myFile.createNewFile() ) {
      System.out.println("Success!");
   } else {
      System.out.println("Failure!");
   }
} catch ( IOException ioe ) { ioe.printStackTrace(); }

createNewFile() does an existence check and file create atomically. This can be useful if you want to ensure you were the creator of the file before writing to it, for example.

share|improve this answer
try (Writer writer = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("myFile.txt"), "utf-8"))) {
    writer.write("text to write");
} catch (IOException ex){
    // handle me
}  

Using try() will close stream automatically. This version is short, fast (buffered) and enables choosing encoding.

share|improve this answer

Here's a little program example to create/overwrite a file, the LONG version, to get to understand more easily what's going on and where it is all going.

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.Writer;

public class writer {
public void writing() {
    try {
//What ever the file path is.
        File statText = new File("E:/Java/Reference/bin/images/statsTest.txt");
        FileOutputStream is = new FileOutputStream(statText);
        OutputStreamWriter osw = new OutputStreamWriter(is);    
        Writer w = new BufferedWriter(osw);
        w.write("PATATE!!!");
        w.close();
    } catch (IOException e) {
        System.err.println("Problème d'écriture du fichier statsTest.txt");
    }
}

public static void main(String[]args) {
    writer write = new writer();
    write.writing();
}
}
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.