List of usage examples for java.io OutputStream subclass-usage
From source file org.jcp.xml.dsig.internal.DigesterOutputStream.java
/**
* This class has been modified slightly to use java.security.MessageDigest
* objects as input, rather than
* org.apache.xml.security.algorithms.MessageDigestAlgorithm objects.
* It also optionally caches the input bytes.
*
From source file NullOutputStream.java
/** * A null output stream. All data written to this stream is ignored. * * @author Thomas Morgner */ public class NullOutputStream extends OutputStream {
From source file org.madsonic.io.ShoutCastOutputStream.java
/**
* Implements SHOUTcast support by decorating an existing output stream.
* <p/>
* Based on protocol description found on
* <em>http://www.smackfu.com/stuff/programming/shoutcast.html</em>
*
From source file org.jumpmind.metl.core.runtime.resource.HttpOutputStream.java
public class HttpOutputStream extends OutputStream { final Logger log = LoggerFactory.getLogger(getClass()); HttpURLConnection httpUrlConnection;
From source file org.polymap.core.data.util.ChunkedResponseOutputStream.java
/**
*
*
* @author <a href="http://www.polymap.de">Falko Braeutigam</a>
* @version POLYMAP3 ($Revision$)
* @since 3.0
From source file org.apache.ignite.internal.processors.hadoop.igfs.HadoopIgfsOutputStream.java
/** * IGFS Hadoop output stream implementation. */ public class HadoopIgfsOutputStream extends OutputStream implements HadoopIgfsStreamEventListener { /** Log instance. */ private Log log;
From source file org.apache.tapestry.request.ResponseOutputStream.java
/**
* A special output stream works with a {@link HttpServletResponse}, buffering
* data so as to defer opening the response's output stream.
*
* <p>The buffering is pretty simple because the code
* between {@link org.apache.tapestry.IMarkupWriter} and this shows lots of buffering
From source file org.apache.sshd.common.channel.ChannelOutputStream.java
/** * TODO Add javadoc * * @author <a href="mailto:dev@mina.apache.org">Apache MINA SSHD Project</a> */ public class ChannelOutputStream extends OutputStream {
From source file org.cloudata.core.client.blob.CBlobOutputStream.java
/**
* @author jindolk
* USER_TABLE.COLUMN: CK=cellKey, VALUE=path + offset + length
* BLOB.RK: path
* BLOB.OFFSET: CK=offset, VALUE=usertable.name+rowKey+column+cellKey
* BLOB.LOCK: CK=lock count, VALUE=null
From source file org.apache.jcp.xml.dsig.internal.DigesterOutputStream.java
/**
* This class has been modified slightly to use java.security.MessageDigest
* objects as input, rather than
* org.apache.xml.security.algorithms.MessageDigestAlgorithm objects.
* It also optionally caches the input bytes.
*