Is a way to pen a text file, read a few lines, close it, re-open it and start reading from the line where you left off before? Or do you always have to start from the top?
|
|
I would just start from the top each time. This is the simplest and possibly not much slower. You can use a RandomAccessFile but you would have to wrap it with your own line reader (as well as place some check that the file hasn't changed in an incompatible manner) |
|||||||||||||
|
|
You sure can! This is not going to be the fastest method, but it is going to work. And, by the way, the people who responded to your question by telling you that you should just start reprocessing from the beginning of the file TOTALLY missed the point of your question. There are an ample amount of reasons to want to return to where you left off. Here is some code I wrote that allows you to store a counter value, and then iterate through the file until you re-reach the counter value... at which point the loop takes affect and process what is in the loop for the remaining lines. Cheers!
|
|||
|
|
|
Can't you just save the line number externally and jump to / seek the desired position? |
|||
|
|