public class RepeatableReader extends Reader implements Repeatable, Serializable
RepeatableReader adds functionality to another reader,
the ability to read repeatedly.
By repeatable-read we mean, after close(), the next invocation of
read(char[], int, int) will re-open the reader.
RepeatableInputStream actually creates a temporary space
to buffer the content, so it can be re-opened again after closed.
Notice that the temporary space (a.k.a., the buffered reader)
is never closed until garbage-collected.
If the content size of the given reader is smaller than
the value specified in the system property called
"org.zkoss.io.memoryLimitSize", the content will be buffered in
the memory. If the size exceeds, the content will be buffered in
a temporary file. By default, it is 512KB.
Note: the maximal value is Integer.MAX_VALUE
If the content size of the given reader is larger than
the value specified in the system property called
"org.zkoss.io.bufferLimitSize", the content won't be buffered,
and it means the read is not repeatable. By default, it is 20MB.
Note: the maximal value is Integer.MAX_VALUE
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Closes the current access, and the next call of
read(char[], int, int)
re-opens the buffered reader. |
protected void |
finalize() |
static Reader |
getInstance(File file)
Returns a reader to read a file, encoded in UTF-8,
that can be read repeatedly.
|
static Reader |
getInstance(File file,
String charset)
Returns a reader to read a file that can be read repeatedly.
|
static Reader |
getInstance(Reader rd)
Returns a reader that can be read repeatedly, or null if the given
reader is null.
|
static Reader |
getInstance(String filename)
Returns a reader to read a file, encoded in UTF-8,
that can be read repeatedly.
|
static Reader |
getInstance(String filename,
String charset)
Returns a reader to read a file that can be read repeatedly.
|
static Reader |
getInstance(URL url)
Returns a reader to read the resource of the specified URL,
encoded in UTF-8.
|
static Reader |
getInstance(URL url,
String charset)
Returns a reader to read the resource of the specified URL.
|
int |
read(char[] cbuf,
int off,
int len) |
public static Reader getInstance(Reader rd)
close() is called.
By repeatable-read we mean, after close(), the next
invocation of read(char[], int, int) will re-open the reader.
Use this method instead of instantiating RepeatableReader
with the constructor.
getInstance(File)public static Reader getInstance(File file, String charset) throws FileNotFoundException
By repeatable-read we mean, after close(), the next
invocation of read(char[], int, int) will re-open the reader.
Note: it is efficient since we don't have to buffer the content of the file to make it repeatable-read.
charset - the charset. If null, "UTF-8" is assumed.IllegalArgumentException - if file is null.FileNotFoundExceptiongetInstance(Reader),
getInstance(String, String)public static Reader getInstance(File file) throws FileNotFoundException
By repeatable-read we mean, after close(), the next
invocation of read(char[], int, int) will re-open the reader.
Note: it is efficient since we don't have to buffer the content of the file to make it repeatable-read.
IllegalArgumentException - if file is null.FileNotFoundExceptiongetInstance(Reader),
getInstance(String)public static Reader getInstance(String filename, String charset) throws FileNotFoundException
By repeatable-read we mean, after close(), the next
invocation of read(char[], int, int) will re-open the reader.
Note: it is efficient since we don't have to buffer the content of the file to make it repeatable-read.
filename - the file namecharset - the charset. If null, "UTF-8" is assumed.IllegalArgumentException - if file is null.FileNotFoundException - if file is not found.getInstance(Reader),
getInstance(File, String)public static Reader getInstance(String filename) throws FileNotFoundException
By repeatable-read we mean, after close(), the next
invocation of read(char[], int, int) will re-open the reader.
Note: it is efficient since we don't have to buffer the content of the file to make it repeatable-read.
filename - the file nameIllegalArgumentException - if file is null.FileNotFoundException - if file is not found.getInstance(Reader),
getInstance(File)public static Reader getInstance(URL url, String charset)
By repeatable-read we mean, after close(), the next
invocation of read(char[], int, int) will re-open the reader.
Note: it is efficient since we don't have to buffer the content of the file to make it repeatable-read.
charset - the charset. If null, "UTF-8" is assumed.IllegalArgumentException - if file is null.getInstance(Reader),
getInstance(String, String)public static Reader getInstance(URL url)
By repeatable-read we mean, after close(), the next
invocation of read(char[], int, int) will re-open the reader.
Note: it is efficient since we don't have to buffer the content of the file to make it repeatable-read.
IllegalArgumentException - if file is null.getInstance(Reader),
getInstance(String)public int read(char[] cbuf,
int off,
int len)
throws IOException
read in class ReaderIOExceptionpublic void close()
throws IOException
read(char[], int, int)
re-opens the buffered reader.close in interface Closeableclose in interface AutoCloseableclose in class ReaderIOExceptionCopyright © 2018. All rights reserved.