View Single Post
  #2 (permalink)  
Old 08-01-2007, 06:41 AM
brianhks brianhks is offline
Senior Member
 
Join Date: Jul 2007
Posts: 134
brianhks will become famous soon enough
Change your code to this
Code:
FileOutputStream fs = new FileOutputStream(outfile, true);
The "true" tells it to append to the file instead of overwriting it.
Reply With Quote