Example usage for java.io OutputStream subclass-usage

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

Introduction

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

Usage

From source file org.apache.hadoop.fs.azure.BlockBlobAppendStream.java

/**
 * Stream object that implememnts append for Block Blobs in WASB.
 */
public class BlockBlobAppendStream extends OutputStream {

    private final String key;

From source file org.kawanfw.file.api.client.RemoteOutputStream.java

/**
 * 
 * A remote output stream is an output stream for writing data to a remote
 * <code>File</code>.
 * <br>
 * It allows to create a remote file by writing bytes on the

From source file CBZip2OutputStream.java

/**
 * An output stream that compresses into the BZip2 format (without the file
 * header chars) into another stream. TODO: Update to BZip2 1.0.1
 *
 * @author <a href="mailto:keiron@aftexsw.com">Keiron Liddle</a>
 */

From source file Bounce.java

/**
 * An <code>OutputStream</code> which relays all data written into it into a
 * list of given <code>OutputStreams</code>.
 */

class MultiOutputStream extends OutputStream {

From source file LZFInputStream.java

/**
 * An output stream to write an LZF stream.
 * The data is automatically compressed.
 */
class LZFOutputStream extends OutputStream {

From source file org.apache.tools.bzip2r.CBZip2OutputStream.java

/**
 * An output stream that compresses into the BZip2 format (without the file
 * header chars) into another stream.
 *
 * @author <a href="mailto:keiron@aftexsw.com">Keiron Liddle</a>
 *

From source file Console.java

class ConsoleWriter extends java.io.OutputStream {

    private ConsoleTextArea textArea;

    private StringBuffer buffer;

From source file org.apache.pig.shock.SSHSocketImplFactory.java

class ChannelOutputStream extends OutputStream {
    SocketChannel sc;

    public ChannelOutputStream(SocketChannel sc) {
        this.sc = sc;
    }

From source file org.webguitoolkit.ui.controls.form.fileupload.FileUploadServlet.java

class MonitoredOutputStream extends OutputStream {
    private OutputStream target;
    private IOutputStreamListener listener;

    public MonitoredOutputStream(OutputStream target, IOutputStreamListener listener) {
        this.target = target;

From source file MainProgram.MainProgram.java

class TextAreaOutputStream extends OutputStream {

    private final JTextArea textArea;
    private final StringBuilder sb = new StringBuilder();
    private final String title;