java.io
Class BufferedReader
java.lang.Object
java.io.Reader
java.io.BufferedReader
public class BufferedReader
- extends Reader
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
BufferedReader
public BufferedReader(Reader in)
BufferedReader
public BufferedReader(Reader in,
int size)
close
public void close()
throws IOException
- Specified by:
close in class Reader
- Throws:
IOException
mark
public void mark(int readlimit)
- Overrides:
mark in class Reader
markSupported
public boolean markSupported()
- Overrides:
markSupported in class Reader
read
public int read()
throws IOException
- Overrides:
read in class Reader
- Throws:
IOException
read
public int read(char[] b,
int off,
int len)
throws IOException
- Specified by:
read in class Reader
- Throws:
IOException
readLine
public String readLine()
throws IOException
- Throws:
IOException
reset
public void reset()
throws IOException
- Overrides:
reset in class Reader
- Throws:
IOException
skip
public long skip(long n)
throws IOException
- Overrides:
skip in class Reader
- Throws:
IOException