reset
method repositions this stream at the last marked position so that subsequent reads re-read the same bytes. The readlimit
argument tells this input stream to allow that many bytes to be read before the mark position gets invalidated.
This method simply performs in.mark(readlimit)
.
@param readlimit the maximum limit of bytes that can be read beforethe mark position becomes invalid.
@see java.io.FilterInputStream#in
@see java.io.FilterInputStream#reset()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|