public abstract class Reader extends Object
Modifier | Constructor and Description |
---|---|
protected |
Reader()
Reader
|
protected |
Reader(Object obj)
Reader
|
Modifier and Type | Method and Description |
---|---|
abstract void |
close() |
void |
mark(int i) |
boolean |
markSupported() |
int |
read() |
int |
read(char[] ac) |
abstract int |
read(char[] ac,
int i,
int j) |
boolean |
ready() |
void |
reset() |
long |
skip(long l) |
protected Object lock
protected Reader()
protected Reader(Object obj)
obj
- ?public abstract void close() throws IOException
IOException
- ?public void mark(int i) throws IOException
i
- ?IOException
- ?public boolean markSupported()
public int read() throws IOException
IOException
- ?public int read(char[] ac) throws IOException
ac
- ?IOException
- ?public abstract int read(char[] ac, int i, int j) throws IOException
ac
- ?i
- ?j
- ?IOException
- ?public boolean ready() throws IOException
IOException
- ?public void reset() throws IOException
IOException
- ?public long skip(long l) throws IOException
l
- ?IOException
- ?