List of usage examples for java.io FilterOutputStream subclass-usage
From source file CRLFOutputStream.java
/**
* Convert lines into the canonical MIME format, that is, terminate lines with
* CRLF.
* <p>
*
* This stream can be used with the Part.writeTo and Message.writeTo methods to
From source file CRLFOutputStream.java
/**
* Convert lines into the canonical MIME format, that is, terminate lines with
* CRLF.
* <P>
*
* This stream can be used with the Part.writeTo and Message.writeTo methods to
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 MD5OutputStream.java
/**
* Implements MD5 functionality on a stream.
* More information about this class is available from <a target="_top" href=
* "http://ostermiller.org/utils/MD5.html">ostermiller.org</a>.
* <p>
* This class produces a 128-bit "fingerprint" or "message digest" for
From source file BASE64EncoderStream.java
/**
* This class implements a BASE64 encoder. It is implemented as
* a FilterOutputStream, so one can just wrap this class around
* any output stream and write bytes into this filter. The encoding
* is done as the bytes are written out.
*
From source file QPEncoderStream.java
/**
* This class implements a Quoted Printable Encoder. It is implemented as
* a FilterOutputStream, so one can just wrap this class around
* any output stream and write bytes into this filter. The Encoding
* is done as the bytes are written out.
*
From source file TarOutputStream.java
/**
* The TarOutputStream writes a UNIX tar archive as an OutputStream.
* Methods are provided to put entries, and then write their contents
* by writing to this stream using write().
*
*
From source file URLConnectionTest.java
/**
* This stream filter converts a stream of bytes to their Base64 encoding.
*
* Base64 encoding encodes 3 bytes into 4 characters. |11111122|22223333|33444444| Each set of 6
* bits is encoded according to the toBase64 map. If the number of input bytes is not a multiple of
* 3, then the last group of 4 characters is padded with one or two = signs. Each output line is at
From source file WrappedInputStream.java
/**
* This output stream works in conjunction with the WrappedInputStream
* to introduce a protocol for sending arbitrary length data in a
* uniform way. This output stream allows variable length data to be
* inserted into an existing output stream so that it can be read by
* an input stream without reading too many bytes (in case of buffering
From source file WrappedInputStream.java
/**
* This output stream works in conjunction with the WrappedInputStream
* to introduce a protocol for sending arbitrary length data in a
* uniform way. This output stream allows variable length data to be
* inserted into an existing output stream so that it can be read by
* an input stream without reading too many bytes (in case of buffering