Methods Summary |
---|
public int | available()
return inputStream.available();
|
public void | close()
inputStream.close();
|
public long | getPosition()
return position;
|
public void | mark(int readlimit)
inputStream.mark(readlimit);
markedPosition = position;
|
public boolean | markSupported()
return inputStream.markSupported();
|
public int | read(byte[] b)
final int c = inputStream.read(b);
position += c;
return c;
|
public int | read(byte[] b, int off, int len)
final int c = inputStream.read(b, off, len);
position += c;
return c;
|
public int | read()
int b = inputStream.read();
if (b != -1)
position++;
return b;
|
public void | reset()
inputStream.reset();
position = markedPosition;
|
public long | skip(long n)
final long c = inputStream.skip(n);
position += c;
return c;
|