| Author |
How to get the total no. of Lines of a text file
|
Mullin Yu
Greenhorn
Joined: Feb 24, 2005
Posts: 14
|
|
|
as subject!
|
 |
Stuart Gray
Ranch Hand
Joined: Apr 21, 2005
Posts: 410
|
|
Try using the LineNumberReader class. Set it up something like this: Then keep calling readLine() to read each line as a String, and getLineNumber() to determine which line you are on (note it starts counting at zero).
|
 |
 |
|
|
subject: How to get the total no. of Lines of a text file
|
|
|