| 
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.io.OutputStream
java.io.FilterOutputStream
org.apache.commons.io.output.ProxyOutputStream
org.apache.commons.io.output.CountingOutputStream
public class CountingOutputStream
A decorating output stream that counts the number of bytes that have passed through the stream so far.
A typical use case would be during debugging, to ensure that data is being written as expected.
| Field Summary | 
|---|
| Fields inherited from class java.io.FilterOutputStream | 
|---|
out | 
| Constructor Summary | |
|---|---|
CountingOutputStream(OutputStream out)
Constructs a new CountingOutputStream.  | 
|
| Method Summary | |
|---|---|
protected  void | 
beforeWrite(int n)
Updates the count with the number of bytes that are being written.  | 
 long | 
getByteCount()
The number of bytes that have passed through this stream.  | 
 int | 
getCount()
The number of bytes that have passed through this stream.  | 
 long | 
resetByteCount()
Set the byte count back to 0.  | 
 int | 
resetCount()
Set the byte count back to 0.  | 
| Methods inherited from class org.apache.commons.io.output.ProxyOutputStream | 
|---|
afterWrite, close, flush, handleIOException, write, write, write | 
| Methods inherited from class java.lang.Object | 
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
public CountingOutputStream(OutputStream out)
out - the OutputStream to write to| Method Detail | 
|---|
protected void beforeWrite(int n)
beforeWrite in class ProxyOutputStreamn - number of bytes to be written to the streampublic int getCount()
 NOTE: From v1.3 this method throws an ArithmeticException if the
 count is greater than can be expressed by an int.
 See getByteCount() for a method using a long.
ArithmeticException - if the byte count is too largepublic int resetCount()
 NOTE: From v1.3 this method throws an ArithmeticException if the
 count is greater than can be expressed by an int.
 See resetByteCount() for a method using a long.
ArithmeticException - if the byte count is too largepublic long getByteCount()
 NOTE: This method is an alternative for getCount().
 It was added because that method returns an integer which will
 result in incorrect count for files over 2GB.
public long resetByteCount()
 NOTE: This method is an alternative for resetCount().
 It was added because that method returns an integer which will
 result in incorrect count for files over 2GB.
  | 
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||