Write Lists to Text File

Please support our Java advertiser: Programming Forums - DaniWeb Sister Site
Reply

Join Date: Nov 2008
Posts: 2
Reputation: tech2001 is an unknown quantity at this point 
Solved Threads: 0
tech2001 tech2001 is offline Offline
Newbie Poster

Write Lists to Text File

 
0
  #1
Nov 12th, 2008
Does anyone know how I can import a List into a text file?
Is there any difference if I try the same process in Groovy?
Reply With Quote Quick reply to this message  
Join Date: May 2007
Posts: 4,483
Reputation: Ezzaral has much to be proud of Ezzaral has much to be proud of Ezzaral has much to be proud of Ezzaral has much to be proud of Ezzaral has much to be proud of Ezzaral has much to be proud of Ezzaral has much to be proud of Ezzaral has much to be proud of Ezzaral has much to be proud of Ezzaral has much to be proud of 
Solved Threads: 515
Moderator
Featured Poster
Ezzaral's Avatar
Ezzaral Ezzaral is online now Online
Industrious Poster

Re: Write Lists to Text File

 
0
  #2
Nov 12th, 2008
I couldn't speak to Groovy, but it's fairly straightforward to write a List to a file
  1. try {
  2. List<String> someList = new ArrayList<String>();
  3. // obviously you would want to use a list with stuff in it
  4. BufferedWriter out = new BufferedWriter(
  5. new FileWriter("outfilename"));
  6. for (String item : someList){
  7. out.write(item);
  8. out.newLine();
  9. }
  10. out.flush();
  11. out.close();
  12. } catch (IOException e) {
  13. e.printStackTrace();
  14. }
Reply With Quote Quick reply to this message  
Join Date: Nov 2008
Posts: 2
Reputation: tech2001 is an unknown quantity at this point 
Solved Threads: 0
tech2001 tech2001 is offline Offline
Newbie Poster

Re: Write Lists to Text File

 
0
  #3
Nov 12th, 2008
Thank you very much for the quick reply.
I will try it in Groovy and come back
to commend.It shouldn't be any different.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Java Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC