Java Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesJava Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old October 24th, 2000, 01:24 PM
iNerd.net iNerd.net is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2000
Posts: 0 iNerd.net User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
I'm experimenting with Java Servlets and Java, and have hit a wall with I/O. What methods would I use to open a file, read through it to the end, and write to the end of the file? With PERL (which I have experience with), you can open a file into an array, wich each component of the array equal to one line. Is there some sort of similar method in JAVA?

Thanks

Reply With Quote
  #2  
Old October 25th, 2000, 05:04 PM
codeguru codeguru is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2000
Posts: 1 codeguru User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
If you want to read a non-binary file line by line you can use a LineNumberReader chained to a FileReader. i.e

LineNumberReader reader = new LineNumberReader( new FileReader( "/home/myHome/theFile" ) );

String lineOfText = reader.readLine();
while( null != lineOfText )
{
//do whatever here with the line of text
lineOfText = reader.readLine();
}
reader.close();

If you want to write/append to the end of a non-binary file you can use a FileOutputStream or a FileWriter. Take a look at the Java API in the IO section and you will find the constructor that allows you to append to a file instead of writing over it

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesJava Help > Reading and Writing w/my servlet

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap