Package com.google.common.io
Class CountingOutputStream
- java.lang.Object
 - 
- java.io.OutputStream
 - 
- java.io.FilterOutputStream
 - 
- com.google.common.io.CountingOutputStream
 
 
 
 
- 
- All Implemented Interfaces:
 java.io.Closeable,java.io.Flushable,java.lang.AutoCloseable
@GwtIncompatible public final class CountingOutputStream extends java.io.FilterOutputStream
An OutputStream that counts the number of bytes written.- Since:
 - 1.0
 - Author:
 - Chris Nokleberg
 
 
- 
- 
Constructor Summary
Constructors Constructor Description CountingOutputStream(java.io.OutputStream out)Wraps another output stream, counting the number of bytes written. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()longgetCount()Returns the number of bytes written.voidwrite(byte[] b, int off, int len)voidwrite(int b) 
 - 
 
- 
- 
Constructor Detail
- 
CountingOutputStream
public CountingOutputStream(java.io.OutputStream out)
Wraps another output stream, counting the number of bytes written.- Parameters:
 out- the output stream to be wrapped
 
 - 
 
- 
Method Detail
- 
getCount
public long getCount()
Returns the number of bytes written. 
- 
write
public void write(byte[] b, int off, int len) throws java.io.IOException
- Overrides:
 writein classjava.io.FilterOutputStream- Throws:
 java.io.IOException
 
- 
write
public void write(int b) throws java.io.IOException
- Overrides:
 writein classjava.io.FilterOutputStream- Throws:
 java.io.IOException
 
- 
close
public void close() throws java.io.IOException
- Specified by:
 closein interfacejava.lang.AutoCloseable- Specified by:
 closein interfacejava.io.Closeable- Overrides:
 closein classjava.io.FilterOutputStream- Throws:
 java.io.IOException
 
 - 
 
 -