BufferedInputStream

class BufferedInputStream : InputStream {
byte[] buf;
int markpos;
int marklimit;
java.io.InputStream.InputStream istr;
}

Members

Variables

count
int count;

The index one greater than the index of the last valid byte in the buffer.

pos
int pos;

The current position in the buffer.

Meta