Simply open the file for appending.

Signature
Daniel Pitts' Tech Blog: <http://virtualinfinity.net/wordpress/>
Daniel meant you to use this Constructor of FileWriter.
https://java.sun.com/j2se/1.4.2/docs/api/java/io/FileWriter.html#FileWriter(java
.io.File,%20boolean)
On Nov 28, 11:43 pm, Daniel Pitts
<newsgroup.spamfil...@virtualinfinity.net> wrote:
> > Hi,
>
[quoted text clipped - 7 lines]
> --
> Daniel Pitts' Tech Blog: <http://virtualinfinity.net/wordpress/>
Lew - 29 Nov 2007 14:26 GMT
> Daniel meant you to use this Constructor of FileWriter.
Please do not top-post.
> https://java.sun.com/j2se/1.4.2/docs/api/java/io/FileWriter.html#FileWriter(java
.io.File,%20boolean)
Exactly what the OP was told in the other thread they started on this same
question.

Signature
Lew
chinmoy.titan@gmail.com - 30 Nov 2007 11:52 GMT
> > Daniel meant you to use this Constructor of FileWriter.
>
[quoted text clipped - 7 lines]
> --
> Lew
Hi,
You can do the following:
FileWriter fwr = new FileWriter("name of file",true);
The second parameter is a boolean valye and if it is true it will
search the file and if the file is there it will append the new values
instead of overwriting. u can write into the file by using
fwr.write(string);
Let me know if this solves ur problem.else u can drop a mail to me....
Chinmoy...