Package com.google.common.io
Class CountingInputStream
- java.lang.Object
- 
- java.io.InputStream
- 
- java.io.FilterInputStream
- 
- com.google.common.io.CountingInputStream
 
 
 
- 
- All Implemented Interfaces:
- java.io.Closeable,- java.lang.AutoCloseable
 
 @GwtIncompatible public final class CountingInputStream extends java.io.FilterInputStream AnInputStreamthat counts the number of bytes read.- Since:
- 1.0
- Author:
- Chris Nokleberg
 
- 
- 
Constructor SummaryConstructors Constructor Description CountingInputStream(java.io.InputStream in)Wraps another input stream, counting the number of bytes read.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetCount()Returns the number of bytes read.voidmark(int readlimit)intread()intread(byte[] b, int off, int len)voidreset()longskip(long n)
 
- 
- 
- 
Constructor Detail- 
CountingInputStreampublic CountingInputStream(java.io.InputStream in) Wraps another input stream, counting the number of bytes read.- Parameters:
- in- the input stream to be wrapped
 
 
- 
 - 
Method Detail- 
getCountpublic long getCount() Returns the number of bytes read.
 - 
readpublic int read() throws java.io.IOException - Overrides:
- readin class- java.io.FilterInputStream
- Throws:
- java.io.IOException
 
 - 
readpublic int read(byte[] b, int off, int len) throws java.io.IOException - Overrides:
- readin class- java.io.FilterInputStream
- Throws:
- java.io.IOException
 
 - 
skippublic long skip(long n) throws java.io.IOException - Overrides:
- skipin class- java.io.FilterInputStream
- Throws:
- java.io.IOException
 
 - 
markpublic void mark(int readlimit) - Overrides:
- markin class- java.io.FilterInputStream
 
 - 
resetpublic void reset() throws java.io.IOException - Overrides:
- resetin class- java.io.FilterInputStream
- Throws:
- java.io.IOException
 
 
- 
 
-