Package java.io
Class Reader

Public Method mark

void mark(int readLimit)

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Mark the current position in the stream. A call to the reset method will attempt to reposition the stream to this point.

The parameter readLimit specifies the limit on the number of characters that may be read while still preserving the mark. After reading this many characters, attempting to reset the stream may fail.