Example usage for java.io FilterOutputStream subclass-usage

List of usage examples for java.io FilterOutputStream subclass-usage

Introduction

In this page you can find the example usage for java.io FilterOutputStream subclass-usage.

Usage

From source file MainClass.java

class MyOutputStream extends FilterOutputStream {

    private OutputStream out1;

    private OutputStream out2;

From source file ASCIIHexOutputStream.java

/**
 * This class applies a ASCII Hex encoding to the stream.
 *
 * @version $Id: ASCIIHexOutputStream.java 426584 2006-07-28 16:01:47Z jeremias $
 */
public class ASCIIHexOutputStream extends FilterOutputStream {

From source file net.sourceforge.subsonic.io.RangeOutputStream.java

/**
 * Special output stream for grabbing only part of a passed stream.
 *
 * @author Sindre Mehus (based on code found on http://www.koders.com/
 */
public class RangeOutputStream extends FilterOutputStream {

From source file org.apache.axis2.datasource.jaxb.BOMOutputStreamFilter.java

/**
 * Strip off the BOM when serializing an embedded JAXB object.
 */
public class BOMOutputStreamFilter extends FilterOutputStream {

    private static final Log log = LogFactory.getLog(BOMOutputStreamFilter.class);

From source file BufferedOutputStream.java

/**
 * This class is like the {@link java.io.BufferedOutputStream} but it
 * extends it with a logic to count the number of bytes written to
 * the output stream.
 * 
 * @version $Id: BufferedOutputStream.java 587751 2007-10-24 02:41:36Z vgritsenko $

From source file BufferedOutputStream.java

/**
 * This class is like the {@link java.io.BufferedOutputStream} but it
 * extends it with a logic to count the number of bytes written to
 * the output stream.
 * 
 * @version $Id: BufferedOutputStream.java 587751 2007-10-24 02:41:36Z vgritsenko $

From source file org.apache.hadoop.hdfs.util.AtomicFileOutputStream.java

/**
 * A FileOutputStream that has the property that it will only show
 * up at its destination once it has been entirely written and flushed
 * to disk. While being written, it will use a .tmp suffix.
 * 
 * When the output stream is closed, it is flushed, fsynced, and

From source file fr.ens.biologie.genomique.eoulsan.io.ByteCountOutputStream.java

/**
 * This class define a filter that count the number of written bytes by an
 * InputStream.
 * @since 1.0
 * @author Laurent Jourdren
 */

From source file TraceOutputStream.java

/**
 * This class is a subclass of DataOutputStream that copies the
 * data being written into the DataOutputStream into another output
 * stream. This class is used here to provide a debug trace of the
 * stuff thats being written out into the DataOutputStream.
 *

From source file imgb64.BaseNCodecOutputStream.java

/**
 * Abstract superclass for Base-N output streams.
 *
 * @since 1.5
 * @version $Id: BaseNCodecOutputStream.java 1544347 2013-11-21 22:30:31Z ggregory $
 */