Class CountingInputStream
java.lang.Object
java.io.InputStream
java.io.FilterInputStream
org.apache.commons.compress.utils.CountingInputStream
- All Implemented Interfaces:
Closeable,AutoCloseable
Deprecated.
Input stream that tracks the number of bytes read.
- Since:
- 1.3
- This class is not thread-safe
-
Field Summary
Fields inherited from class java.io.FilterInputStream
in -
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Creates aCountingInputStreamby assigning the argumentinto the fieldthis.inso as to remember it for later use. -
Method Summary
Modifier and TypeMethodDescriptionprotected final voidcount(long read) Deprecated.Increments the counter of already read bytes.longDeprecated.Returns the current number of bytes read from this stream.intread()Deprecated.intread(byte[] b) Deprecated.intread(byte[] b, int off, int len) Deprecated.Methods inherited from class java.io.FilterInputStream
available, close, mark, markSupported, reset, skip
-
Constructor Details
-
CountingInputStream
Deprecated.Creates aCountingInputStreamby assigning the argumentinto the fieldthis.inso as to remember it for later use.- Parameters:
in- the underlying input stream, ornullif this instance is to be created without an underlying stream.
-
-
Method Details
-
count
Deprecated.Increments the counter of already read bytes. Doesn't increment if the EOF has been hit (read == -1)- Parameters:
read- the number of bytes read
-
getBytesRead
Deprecated.Returns the current number of bytes read from this stream.- Returns:
- the number of read bytes
-
read
Deprecated.- Overrides:
readin classFilterInputStream- Throws:
IOException
-
read
Deprecated.- Overrides:
readin classFilterInputStream- Throws:
IOException
-
read
Deprecated.- Overrides:
readin classFilterInputStream- Throws:
IOException
-
CountingInputStream.