public final class BufferedReader extends Reader
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
int |
read() |
int |
read(char[] cbuf,
int off,
int len) |
String |
readLine() |
boolean |
ready() |
long |
skip(long n) |
public int read()
throws IOException
read in class ReaderIOException - Signals that an I/O exception has occurred.public int read(char[] cbuf,
int off,
int len)
throws IOException
read in class Readercbuf - off - len - IOException - Signals that an I/O exception has occurred.public String readLine() throws IOException
IOException - Signals that an I/O exception has occurred.public long skip(long n)
throws IOException
skip in class Readern - IOException - Signals that an I/O exception has occurred.public boolean ready()
throws IOException
ready in class ReaderIOException - Signals that an I/O exception has occurred.public void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class ReaderIOException - Signals that an I/O exception has occurred.Copyright © 2021. All rights reserved.