|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.io.InputStream org.zkoss.io.RepeatableInputStream
public class RepeatableInputStream
RepeatableInputStream
adds functionality to another input stream,
the ability to read repeatedly.
By repeatable-read we mean, after close()
, the next invocation of
read()
will re-open the input stream.
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 input stream)
is never closed until garbage-collected.
If the content size of the given input stream 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 input stream 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
Method Summary | |
---|---|
void |
close()
Closes the current access, and the next call of close()
re-opens the buffered input stream. |
protected void |
finalize()
|
static java.io.InputStream |
getInstance(java.io.File file)
Returns an input stream of a file that can be read repeatedly. |
static java.io.InputStream |
getInstance(java.io.InputStream is)
Returns an input stream that can be read repeatedly, or null if the given input stream is null. |
static java.io.InputStream |
getInstance(java.lang.String filename)
Returns an input stream of a file that can be read repeatedly. |
static java.io.InputStream |
getInstance(java.net.URL url)
Returns an input stream of the resource of the given URL that can be read repeatedly. |
int |
read()
|
Methods inherited from class java.io.InputStream |
---|
available, mark, markSupported, read, read, reset, skip |
Methods inherited from class java.lang.Object |
---|
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static java.io.InputStream getInstance(java.io.InputStream is)
close()
is called.
By repeatable-read we mean, after close()
, the next
invocation of read()
will re-open the input stream.
Use this method instead of instantiating RepeatableInputStream
with the constructor.
getInstance(File)
public static java.io.InputStream getInstance(java.io.File file) throws java.io.FileNotFoundException
By repeatable-read we mean, after close()
, the next
invocation of read()
will re-open the input stream.
Note: it is efficient since we don't have to buffer the content of the file to make it repeatable-read.
java.lang.IllegalArgumentException
- if file is null.
java.io.FileNotFoundException
- if file not foundgetInstance(InputStream)
,
getInstance(String)
public static java.io.InputStream getInstance(java.lang.String filename) throws java.io.FileNotFoundException
By repeatable-read we mean, after close()
, the next
invocation of read()
will re-open the input stream.
Note: it is efficient since we don't have to buffer the content of the file to make it repeatable-read.
java.lang.IllegalArgumentException
- if file is null.
java.io.FileNotFoundException
getInstance(InputStream)
,
getInstance(File)
public static java.io.InputStream getInstance(java.net.URL url)
By repeatable-read we mean, after close()
, the next
invocation of read()
will re-open the input stream.
Note: it is efficient since we don't have to buffer the content of the resource to make it repeatable-read.
java.lang.IllegalArgumentException
- if url is null.getInstance(InputStream)
,
getInstance(String)
public int read() throws java.io.IOException
read
in class java.io.InputStream
java.io.IOException
public void close() throws java.io.IOException
close()
re-opens the buffered input stream.
close
in interface java.io.Closeable
close
in class java.io.InputStream
java.io.IOException
protected void finalize() throws java.lang.Throwable
finalize
in class java.lang.Object
java.lang.Throwable
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |