|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectjava.io.InputStream
java.io.FilterInputStream
org.apache.commons.io.input.ProxyInputStream
org.apache.commons.io.input.CountingInputStream
A decorating input stream that counts the number of bytes that have passed through so far.
| Field Summary |
| Fields inherited from class java.io.FilterInputStream |
in |
| Constructor Summary | |
CountingInputStream(InputStream in)
Constructs a new CountingInputStream. |
|
| Method Summary | |
int |
getCount()
The number of bytes that have passed through this stream. |
int |
read()
Increases the count by 1 if a byte is successfully read. |
int |
read(byte[] b)
Increases the count by super.read(b)'s return count |
int |
read(byte[] b,
int off,
int len)
Increases the count by super.read(b, off, len)'s return count |
int |
resetCount()
Set the count back to 0. |
long |
skip(long length)
Increases the count by the number of skipped bytes. |
| Methods inherited from class org.apache.commons.io.input.ProxyInputStream |
available, close, mark, markSupported, reset |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public CountingInputStream(InputStream in)
in - InputStream to delegate to| Method Detail |
public int read(byte[] b)
throws IOException
read in class ProxyInputStreamIOExceptionInputStream.read(byte[])
public int read(byte[] b,
int off,
int len)
throws IOException
read in class ProxyInputStreamIOExceptionInputStream.read(byte[], int, int)
public int read()
throws IOException
read in class ProxyInputStreamIOExceptionInputStream.read()
public long skip(long length)
throws IOException
skip in class ProxyInputStreamIOExceptionInputStream.skip(long)public int getCount()
public int resetCount()
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||