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.s3r.S3ROutputStream.java

public class S3ROutputStream extends OutputStream {
    private OutputStream backupStream;
    private File backupFile;
    private boolean closed;
    private String key;
    private String bucket;

From source file org.apache.hadoop.fs.s3a.S3AOutputStream.java

public class S3AOutputStream extends OutputStream {
    private OutputStream backupStream;
    private File backupFile;
    private boolean closed;
    private String key;
    private String bucket;

From source file jfs.sync.encryption.JFSEncryptedStream.java

/**
 * 
 * Provide an encrypted stream where its contents are compressed with the most promising method according to a large set
 * of configuration options.
 * 
 */

From source file net.sf.jasperreports.engine.util.FileBufferedOutputStream.java

/**
 * @author Lucian Chirita (lucianc@users.sourceforge.net)
 */
public class FileBufferedOutputStream extends OutputStream {

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

From source file com.jaspersoft.jasperserver.api.metadata.common.domain.util.FileBufferedOutputStream.java

/**
 * @author Lucian Chirita (lucianc@users.sourceforge.net)
 * @version $Id: FileBufferedOutputStream.java 47331 2014-07-18 09:13:06Z kklein $
 */
public class FileBufferedOutputStream extends OutputStream {

From source file org.browsermob.proxy.jetty.http.HttpOutputStream.java

/** HTTP Http OutputStream.
 * Acts as a BufferedOutputStream until setChunking() is called.
 * Once chunking is enabled, the raw stream is chunk encoded as per RFC2616.
 *
 * Implements the following HTTP and Servlet features: <UL>
 * <LI>Filters for content and transfer encodings.

From source file net.lightbody.bmp.proxy.jetty.http.HttpOutputStream.java

/** HTTP Http OutputStream.
 * Acts as a BufferedOutputStream until setChunking() is called.
 * Once chunking is enabled, the raw stream is chunk encoded as per RFC2616.
 *
 * Implements the following HTTP and Servlet features: <UL>
 * <LI>Filters for content and transfer encodings.

From source file org.anarres.lzo.LzoOutputStream.java

/**
 *
 * @author shevek
 */
public class LzoOutputStream extends OutputStream {

From source file com.caved_in.commons.utilities.StringUtil.java

public class StringUtil extends OutputStream {

    private static final Pattern STRIP_COLOR_PATTERN = Pattern
            .compile("(?i)" + String.valueOf('&') + "[0-9A-FK-OR]");

    public static String NEWLINE_SPLIT_REGEX = "\\r?\\n";

From source file UDPOutputStream.java

public class UDPOutputStream extends OutputStream {

    public static final int DEFAULT_BUFFER_SIZE = 1024;
    public static final int DEFAULT_MAX_BUFFER_SIZE = 8192;

    protected DatagramSocket dsock = null;