The commons FileUtils look pretty cool, and I can't believe that they cannot be made to append to a file.

File file = new File(path);
FileUtils.writeLines(file, printStats(new DateTime(), headerRequired));

The above just replaces the contents of the file each time, and I would just like to keep tagging this stuff to end just as this code does.

fw = new FileWriter(file, true);
try{
    for(String line : printStats(new DateTime(), headerRequired)){
        fw.write(line + "\n");
    }
}
finally{ 
    fw.close();
}

I've searched the javadoc but found nothing! What am I missing?

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

You can use IOUtils.writeLines(), it receives a Writer object which you can initialize like in your second example.

link|improve this answer
so i should put true in lines "the lines to write, null entries produce blank lines"? – wizztjh Dec 26 '10 at 17:47
feedback

Their is now method like appendString(...) in the FileUtils class.

But you can get the Outputstream from FileUtils.openOutputStream(...) and than write to it by using

write(byte[] b, int off, int len)

You can calculte the off, so that you will apend to the file.

EDIT

After reading Davids answer i recognized that the BufferedWriter will do this job for you

BufferedWriter output = new BufferedWriter(new FileWriter(simFile));
output.append(text);
link|improve this answer
feedback

As of apache FileUtils 2.1 you have this method:

static void write(File file, CharSequence data, boolean append)

link|improve this answer
feedback

you could do something like

List x = FileUtils.readLines(file); x.add(String) FileUtils.writelines(file,x);

link|improve this answer
ouch : very dangerous performance hit here. – jayunit100 Mar 5 at 17:46
feedback

Your Answer

 
or
required, but never shown

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