|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.io.Reader | +--java.io.FilterReader | +--java.io.PushbackReader
Untamed: A character-stream reader that allows characters to be pushed back into the stream.
Field Summary | |
private char[] |
buf
Pushback buffer |
private int |
pos
Current position in buffer |
Fields inherited from class java.io.FilterReader |
in |
Fields inherited from class java.io.Reader |
lock |
Constructor Summary | |
PushbackReader(Reader in)
Enabled: Create a new pushback reader with a one-character pushback buffer. |
|
PushbackReader(Reader in,
int size)
Enabled: Create a new pushback reader with a pushback buffer of the given size. |
Method Summary | |
void |
close()
Enabled: Close the stream. |
private void |
ensureOpen()
Check to make sure that the stream has not been closed. |
void |
mark(int readAheadLimit)
Enabled: Mark the present position in the stream. |
boolean |
markSupported()
Enabled: Tell whether this stream supports the mark() operation, which it does not. |
int |
read()
Enabled: Read a single character. |
int |
read(char[] cbuf,
int off,
int len)
Enabled: Read characters into a portion of an array. |
boolean |
ready()
Enabled: Tell whether this stream is ready to be read. |
void |
reset()
Enabled: Reset the stream. |
void |
unread(char[] cbuf)
Enabled: Push back an array of characters by copying it to the front of the pushback buffer. |
void |
unread(char[] cbuf,
int off,
int len)
Enabled: Push back a portion of an array of characters by copying it to the front of the pushback buffer. |
void |
unread(int c)
Enabled: Push back a single character. |
Methods inherited from class java.io.FilterReader |
skip |
Methods inherited from class java.io.Reader |
getText, getTwine, iterate, iterate, read, readChar, readString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
private char[] buf
private int pos
Constructor Detail |
public PushbackReader(Reader in, int size)
in
- The reader from which characters will be readsize
- The size of the pushback bufferpublic PushbackReader(Reader in)
in
- The reader from which characters will be readMethod Detail |
private void ensureOpen() throws IOException
IOException
public int read() throws IOException
read
in class FilterReader
IOException
public int read(char[] cbuf, int off, int len) throws IOException
read
in class FilterReader
cbuf
- Destination bufferoff
- Offset at which to start writing characterslen
- Maximum number of characters to read
IOException
public void unread(int c) throws IOException
c
- The character to push back
IOException
public void unread(char[] cbuf, int off, int len) throws IOException
cbuf[off]
, the
character after that will have the value cbuf[off+1]
, and
so forth.
cbuf
- Character arrayoff
- Offset of first character to push backlen
- Number of characters to push back
IOException
public void unread(char[] cbuf) throws IOException
cbuf[0]
, the character after that
will have the value cbuf[1]
, and so forth.
cbuf
- Character array to push back
IOException
public boolean ready() throws IOException
ready
in class FilterReader
IOException
public void mark(int readAheadLimit) throws IOException
mark
for class PushbackReader
always throws an exception.
mark
in class FilterReader
readAheadLimit
- Limit on the number of characters that may be
read while still preserving the mark. After
reading this many characters, attempting to
reset the stream may fail.
IOException
public void reset() throws IOException
reset
method of
PushbackReader
always throws an exception.
reset
in class FilterReader
IOException
public boolean markSupported()
markSupported
in class FilterReader
public void close() throws IOException
close
in class FilterReader
IOException
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |