THE PACKAGE JAVA.IO
java.io.ByteArrayInputStream
22.6
22.6.8
public long skip(long n)
The actual number
k
of bytes to be skipped is equal to the smaller of
n
and
count pos
. The value
k
is added into
pos
and
k
is returned.
Overrides the
skip
method of
InputStream
( 22.3.4).
22.6.9
public int available()
The quantity
count pos
is returned.
Overrides the
available
method of
InputStream
( 22.3.5).
22.6.10
public void reset()
The value of
pos
is set to
0
.
Overrides the
reset
method of
InputStream
( 22.3.8).
691