public class ConcatenatingReader extends FilterReader
in| Constructor and Description |
|---|
ConcatenatingReader(BufferedReader in)
This class requires that the input reader be a BufferedReader so
it can do line-oriented operations.
|
| Modifier and Type | Method and Description |
|---|---|
void |
mark(int readAheadLimit) |
boolean |
markSupported() |
int |
read() |
int |
read(char[] cbuf,
int off,
int len) |
boolean |
ready() |
void |
reset() |
long |
skip(long n) |
closepublic ConcatenatingReader(BufferedReader in)
public int read()
throws IOException
read in class FilterReaderIOExceptionpublic boolean markSupported()
markSupported in class FilterReaderpublic void mark(int readAheadLimit)
throws IOException
mark in class FilterReaderIOExceptionpublic void reset()
throws IOException
reset in class FilterReaderIOExceptionpublic boolean ready()
throws IOException
ready in class FilterReaderIOExceptionpublic int read(char[] cbuf,
int off,
int len)
throws IOException
read in class FilterReaderIOExceptionpublic long skip(long n)
throws IOException
skip in class FilterReaderIOException