Package java.io
Class BufferedReader
- java.lang.Object
-
- java.io.Reader
-
- java.io.BufferedReader
-
- Direct Known Subclasses:
LineNumberReader
public class BufferedReader extends Reader
-
-
Constructor Summary
Constructors Constructor Description BufferedReader(Reader var0)
BufferedReader(Reader var0, int var1)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
void
mark(int var0)
boolean
markSupported()
int
read()
int
read(char[] var0, int var1, int var2)
String
readLine()
boolean
ready()
void
reset()
long
skip(long var0)
-
-
-
Method Detail
-
close
public void close() throws IOException
- Specified by:
close
in classReader
- Throws:
IOException
-
mark
public void mark(int var0) throws IOException
- Overrides:
mark
in classReader
- Throws:
IOException
-
markSupported
public boolean markSupported()
- Overrides:
markSupported
in classReader
-
read
public int read() throws IOException
- Overrides:
read
in classReader
- Throws:
IOException
-
read
public int read(char[] var0, int var1, int var2) throws IOException
- Specified by:
read
in classReader
- Throws:
IOException
-
readLine
public String readLine() throws IOException
- Throws:
IOException
-
ready
public boolean ready() throws IOException
- Overrides:
ready
in classReader
- Throws:
IOException
-
reset
public void reset() throws IOException
- Overrides:
reset
in classReader
- Throws:
IOException
-
skip
public long skip(long var0) throws IOException
- Overrides:
skip
in classReader
- Throws:
IOException
-
-