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 Summary
Constructors Constructor Description CountingInputStream(java.io.InputStream in)Wraps another input stream, counting the number of bytes read. 
- 
Method Summary
All 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
- 
CountingInputStream
public 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
- 
getCount
public long getCount()
Returns the number of bytes read. 
- 
read
public int read() throws java.io.IOException
- Overrides:
 readin classjava.io.FilterInputStream- Throws:
 java.io.IOException
 
- 
read
public int read(byte[] b, int off, int len) throws java.io.IOException
- Overrides:
 readin classjava.io.FilterInputStream- Throws:
 java.io.IOException
 
- 
skip
public long skip(long n) throws java.io.IOException
- Overrides:
 skipin classjava.io.FilterInputStream- Throws:
 java.io.IOException
 
- 
mark
public void mark(int readlimit)
- Overrides:
 markin classjava.io.FilterInputStream
 
- 
reset
public void reset() throws java.io.IOException
- Overrides:
 resetin classjava.io.FilterInputStream- Throws:
 java.io.IOException
 
 - 
 
 -