View Single Post
  #3 (permalink)  
Old 01-30-2008, 07:39 AM
otoro_java otoro_java is offline
Member
 
Join Date: Jan 2008
Posts: 5
otoro_java is on a distinguished road
Here's what I have, but doesn't seem to work

Code:
public static ArrayList writeAccts(ArrayList anAL, String file) { Writer output = null; try { output = new BufferedWriter( new FileWriter(file) ); output.write(anAL); } finally { if (output != null) output.close(); } return anAL; }
Reply With Quote