Package java.io
Class LineNumberReader

Public Method reset

void reset()

Overrides:

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

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.