Count OutputStream : Stream « File Input Output « Java






Count OutputStream

    
// CountOutputStream.java
// $Id: CountOutputStream.java,v 1.3 2000/08/16 21:37:57 ylafon Exp $
// (c) COPYRIGHT MIT and INRIA, 1996.
// Please first read the full copyright statement in file COPYRIGHT.html



import java.io.OutputStream;

/**
 * This class can be used to count number of bytes emitted to a stream. The
 * stream will actually throw the data away. It's main function is to count the
 * number of bytes emitted to a stream before actually emitting the bytes
 * (that's not really efficient, but works enough).
 */

public class CountOutputStream extends OutputStream {
  protected int count = 0;

  /**
   * Get the current number of bytes emitted to that stream.
   * 
   * @return The current count value.
   */

  public int getCount() {
    return count;
  }

  /**
   * Close that count stream.
   */

  public void close() {
    return;
  }

  /**
   * Flush that count stream.
   */

  public void flush() {
    return;
  }

  /**
   * Write an array of bytes to that stream.
   */

  public void write(byte b[]) {
    count += b.length;
  }

  /**
   * Write part of an array of bytes to that stream.
   */

  public void write(byte b[], int off, int len) {
    count += len;
  }

  /**
   * Write a single byte to that stream.
   */

  public void write(int b) {
    count++;
  }

  /**
   * Create a new instance of that class.
   */

  public CountOutputStream() {
    this.count = 0;
  }

}

   
    
    
    
  








Related examples in the same category

1.Show the content of a file
2.Some general utility functions for dealing with Streams
3.Utilities related to file and stream handling.
4.Utility functions related to Streams
5.Utility methods for handling streams
6.Various utility methods that have something to do with I/O
7.General IO Stream manipulation
8.General IO stream manipulation utilities
9.Count the number of bytes read through the stream
10.File utilities for file read and write
11.An InputStream class that terminates the stream when it encounters a particular byte sequence.
12.An InputStream that implements HTTP/1.1 chunking
13.An OutputStream which relays all data written into it into a list of given OutputStreams
14.Utility code for dealing with different endian systems
15.Copy From Stream To File
16.Copy Inputstream To File
17.Load Stream Into String
18.Reads the content of an input stream and writes it into an output stream.