List of usage examples for java.io OutputStream subclass-usage
From source file com.replaymod.replaystudio.io.ReplayOutputStream.java
/** * Output stream capable of writing {@link org.spacehq.packetlib.packet.Packet}s and (optionally) * {@link ReplayMetaData}. */ public class ReplayOutputStream extends OutputStream {
From source file mitm.common.security.crypto.PBEncryptionOutputStream.java
/**
* OutputStream that must be wrapped around another OutputStream so the output can be encrypted.
*
* This class is not thread safe.
*
* @author Martijn Brinkers
From source file ClosableByteArrayOutputStream.java
/**
* Provides true Closable semantics ordinarily missing in a
* {@link java.io.ByteArrayOutputStream}. <p>
*
* Accumulates output in a byte array that automatically grows as needed.<p>
*
From source file ClosableByteArrayOutputStream.java
/**
* Provides true Closable semantics ordinarily missing in a
* {@link java.io.ByteArrayOutputStream}.
*
* Accumulates output in a byte array that automatically grows as needed.
*
From source file org.openqa.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.apache.hadoop.fs.s3a.S3AFastOutputStream.java
/**
* Upload files/parts asap directly from a memory buffer (instead of buffering
* to a file).
* <p>
* Uploads are managed low-level rather than through the AWS TransferManager.
* This allows for uploading each part of a multi-part upload as soon as
From source file org.apache.hadoop.fs.s3r.S3RFastOutputStream.java
/**
* Upload files/parts asap directly from a memory buffer (instead of buffering
* to a file).
* <p>
* Uploads are managed low-level rather than through the AWS TransferManager.
* This allows for uploading each part of a multi-part upload as soon as
From source file BinaryDumpOutputStream.java
/**
* A kind of super-formatter. It is sent a stream of binary data and
* formats it in a human-readable dump format which is forwarded to
* its output stream.
*
* <p>Currently, output is in hex though options to change that may
From source file org.ajax4jsf.resource.ScriptRenderer.java
class CountingOutputStream extends OutputStream { private OutputStream outputStream; private int written = 0; CountingOutputStream(OutputStream outputStream) { super();
From source file org.apache.hadoop.fs.azure.PageBlobOutputStream.java
/** * An output stream that write file data to a page blob stored using ASV's * custom format. */ final class PageBlobOutputStream extends OutputStream implements Syncable { /**