n
number of bytes in this InputStream. Subsequent read()
's will not return these bytes unless reset()
is used. This method may perform multiple reads to read n
bytes. This default implementation reads n
bytes into a temporary buffer. Concrete subclasses should provide their own implementation.
@param n the number of bytes to skip.
@return the number of bytes actually skipped.
@throws IOException If the stream is already closed or another IOException occurs.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|