vote up 3 vote down star

I need to append text repeatedly to an existing file in Java. How do I do that?

flag

why does this keep getting downvoted? – Kip Oct 26 at 15:01
probably because it sounds like homework. no one wants to help someone cheat their way through school and then have to deal with them at work. right? – mkoryak Oct 26 at 15:03
1  
so this site is only for working professionals? – northpole Oct 26 at 15:05
3  
Even if this is homework it's not like they're asking for the entire solution to a question - I think the question is fair game (+1). – Adamski Oct 26 at 15:12
1  
@Drew: as long as the question is not a dupe of another SO question, it is welcome here, no matter how basic. In fact, this is the goal. – Kip Oct 26 at 16:16
show 2 more comments

2 Answers

vote up 7 vote down check

Are you doing this for logging purposes? If so Apache Log4j is the de facto standard Java logging library.

If you just want something simple, this will work:

try {
    PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter("outfilename", true)));
    out.println("the text");
    out.close();
} catch (IOException e) {
    //oh noes!
}

The second parameter to the FileWriter constructor will tell it to append to the file (as opposed to clearing the file). Using a BufferedWriter is recommended for an expensive writer (i.e. a FileWriter), and using a PrintWriter gives you access to println syntax that you're probably used to from System.out. But the BufferedWriter and PrintWriter wrappers are not strictly necessary.

link|flag
vote up 7 vote down

You can use fileWriter with a true for appending.

try
{
    String filename= "MyFile.txt";
    FileWriter fw = new FileWriter(filename,true); //the true will append the new data
    fw.write("add a line\n");//appends the string to the file
    fw.close();
}
catch(IOException ioe)
{
    System.err.println("IOException: " + ioe.getMessage());
}
link|flag

Your Answer

Get an OpenID
or

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