Package java.io
Class LineNumberReader
Description:
This method resets the stream to the most recent mark.
Example
File file = new File("testFile");
Reader read = new FileReader(file);
LineNumberReader lnr = new LineNumberReader(read);
...
lnr.reset();
The example above resets the current position in the stream to the most recent mark.