Count OutputStream : Stream « File Input Output « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » File Input Output » Stream 




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.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.