writing to a file

What class should I use if I want to add additional text onto a textfile?
[80 byte] By [imgnakikurbta] at [2007-11-27 4:01:48]
# 1
FileWriter, it takes an append flag in the construtor.Kaj
kajbja at 2007-7-12 9:06:33 > top of Java-index,Java Essentials,Java Programming...
# 2
Check out java.io.FileWriter("filename-here", true) - the boolean tells it that you want to start writing at the end of the file, I believe.G
ggaineya at 2007-7-12 9:06:33 > top of Java-index,Java Essentials,Java Programming...
# 3
> FileWriter, it takes an append flag in the> construtor.Dammit, that's twice today that I've been off by only a minute or two - you guys are Too **** Fast! :)G
ggaineya at 2007-7-12 9:06:33 > top of Java-index,Java Essentials,Java Programming...
# 4

> > FileWriter, it takes an append flag in the

> > construtor.

>

> Dammit, that's twice today that I've been off

> by only a minute or two - you guys are Too **** Fast!

> :)

>

> G

Well, I have have to get some sleep, so I won't ruin the rest of your day ;)

kajbja at 2007-7-12 9:06:33 > top of Java-index,Java Essentials,Java Programming...
# 5
I used that class but afterwards when I open the textfile, nothing is saved onto it.
imgnakikurbta at 2007-7-12 9:06:33 > top of Java-index,Java Essentials,Java Programming...
# 6
> I used that class but afterwards when I open the> textfile, nothing is saved onto it.Did you call flush and close? (I guess you used a BufferedWriter as well?)Kaj
kajbja at 2007-7-12 9:06:33 > top of Java-index,Java Essentials,Java Programming...
# 7
Sorry, I do not know what flush and close do.
imgnakikurbta at 2007-7-12 9:06:33 > top of Java-index,Java Essentials,Java Programming...
# 8
Ok, I got it. Thanks for your help!
imgnakikurbta at 2007-7-12 9:06:33 > top of Java-index,Java Essentials,Java Programming...
# 9
> Sorry, I do not know what flush and close do.flush may be not completely obvious, but close? And do the letters API ring a bell?
DrLaszloJamfa at 2007-7-12 9:06:33 > top of Java-index,Java Essentials,Java Programming...