Methods Summary |
---|
public void | close()Close the stream.
in.close();
|
public void | mark(int readAheadLimit)Mark the present position in the stream.
in.mark(readAheadLimit);
|
public boolean | markSupported()Tell whether this stream supports the mark() operation.
return in.markSupported();
|
public int | read()Read a single character.
return in.read();
|
public int | read(char[] cbuf, int off, int len)Read characters into a portion of an array.
return in.read(cbuf, off, len);
|
public boolean | ready()Tell whether this stream is ready to be read.
return in.ready();
|
public void | reset()Reset the stream.
in.reset();
|
public long | skip(long n)Skip characters.
return in.skip(n);
|