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 CRLFOutputStream.java

/**
 * Convert lines into the canonical format, that is, terminate lines with the
 * CRLF sequence.
 * 
 * @author John Mani
 */

From source file Main.java

class PrintableOutputStream extends FilterOutputStream {

    public PrintableOutputStream(OutputStream out) {
        super(out);
    }

From source file MainClass.java

class PrintableOutputStream extends FilterOutputStream {

    public PrintableOutputStream(OutputStream out) {
        super(out);
    }

From source file com.gc.iotools.stream.os.inspection.OutputStreamDumper.java

/**
 * <p>
 * Copies the data that is written to this class to the
 * <code>OutputStream</code> passed in the constructor. It also keep track of
 * the data written to the underlying stream in a byte array that can be read
 * at any time. This is useful for logging purposes.

From source file org.adidac.io.EmbededOutputStream.java

/**
 * The class implements a buffered output stream. By setting up such
 * an output stream, an application can write bytes to the underlying
 * output stream without necessarily causing a call to the underlying
 * system for each byte written.
 *

From source file hudson.util.SignatureOutputStream.java

/**
 * @author Kohsuke Kawaguchi
 */
public class SignatureOutputStream extends FilterOutputStream {

    private final Signature sig;

From source file FastBufferedOutputStream.java

/**
 * 
 * <DIV lang="en"></DIV>
 * <DIV lang="ja"></DIV>
 * 
 * @author Makoto YUI (yuin405+xbird@gmail.com)

From source file com.redhat.red.offliner.ChecksumOutputStream.java

/**
 * Calculates a SHA-256 checksum while the stream it wraps is written to, for later verification.
 */
public final class ChecksumOutputStream extends FilterOutputStream {
    private MessageDigest digest;

From source file org.apache.sshd.common.util.LoggingFilterOutputStream.java

/**
 * TODO Add javadoc
 *
 * @author <a href="mailto:dev@mina.apache.org">Apache MINA SSHD Project</a>
 */
public class LoggingFilterOutputStream extends FilterOutputStream {

From source file com.magnet.tools.cli.helper.TeeFilteringOutputStream.java

/**
 * Write the data to an output stream while filtering lines for a regular
 * expression
 *
 */
public class TeeFilteringOutputStream extends FilterOutputStream {