The current position in the buffer. This is the index of the next
character to be read from the <code>buf</code> array.
<p>
This value is always in the range <code>0</code>
through <code>count</code>. If it is less
than <code>count</code>, then <code>bufpos</code>
is the next byte to be supplied as input;
if it is equal to <code>count</code>, then
the next <code>read</code> or <code>skip</code>
operation will require more bytes to be
read from the contained input stream.
The current position in the buffer. This is the index of the next character to be read from the <code>buf</code> array. <p> This value is always in the range <code>0</code> through <code>count</code>. If it is less than <code>count</code>, then <code>bufpos</code> is the next byte to be supplied as input; if it is equal to <code>count</code>, then the next <code>read</code> or <code>skip</code> operation will require more bytes to be read from the contained input stream.
@see java.io.BufferedInputStream#buf