This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Java in General and the fly likes First line of file Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "First line of file" Watch "First line of file" New topic
Author

First line of file

Angus Ferguson
Ranch Hand

Joined: Jun 22, 2012
Posts: 246
Hi,

I am reading form a .data file but it only seems to be reading the first line of the code when I in more than the next code in the loop




It works well in the example but if I in in the loop something like



it only reads the first line
Any idea?

Thanks


Tony Docherty
Bartender

Joined: Aug 07, 2007
Posts: 1169
    
    3

I suggest you read the AvailableDoesntDoWhatYouThinkItDoes FAQ
Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19216

Also, you can't call dis.readLine() twice while still expecting the same line to be returned. Any method that reads part of a file (or InputStream or Reader) moves forward in the file (or InputStream or Reader). Anything that was just read won't be re-read again unless you use the mark / reset method pair.


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: First line of file
 
Similar Threads
java uses or overrides a deprecated API.
how to read line by line and pass each line value to a method
How can I use StringBuffer in this case...
writing data to CSV file
how exactly can i make out if a file in linux has just been updated or has been replaced.