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
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Creates aCountingInputStreamby assigning the argumentinto the fieldthis.inso as to remember it for later use. -
Method Summary
Methods inherited from class java.io.FilterInputStream
available, close, mark, markSupported, reset, skipMethods inherited from class java.io.InputStream
nullInputStream, readAllBytes, readNBytes, readNBytes, skipNBytes, transferTo
-
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
-
getBytesRead
public long 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.