|
|||||||||||
| 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
Used in debugging, it counts the number of bytes that pass through it.
| Field Summary | |
private int |
count
|
| Fields inherited from class org.apache.commons.io.input.ProxyInputStream |
|
| Fields inherited from class java.io.FilterInputStream |
in |
| Fields inherited from class java.io.InputStream |
|
| Constructor Summary | |
CountingInputStream(java.io.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. |
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. |
| Methods inherited from class org.apache.commons.io.input.ProxyInputStream |
available, close, mark, markSupported, reset, skip |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
private int count
| Constructor Detail |
public CountingInputStream(java.io.InputStream in)
in - InputStream to delegate to| Method Detail |
public int read(byte[] b)
throws java.io.IOException
read in class ProxyInputStreamjava.io.IOExceptionInputStream.read(byte[])
public int read(byte[] b,
int off,
int len)
throws java.io.IOException
read in class ProxyInputStreamjava.io.IOExceptionInputStream.read(byte[], int, int)
public int read()
throws java.io.IOException
read in class ProxyInputStreamjava.io.IOExceptionInputStream.read()public int getCount()
public int resetCount()
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||