List of usage examples for java.io OutputStream subclass-usage
From source file StringBufferOutputStream.java
/** * @author amit * */ public class StringBufferOutputStream extends OutputStream { private StringBuffer textBuffer = new StringBuffer();
From source file org.eclipse.osee.mail.internal.ForwardingStream.java
/** * Based on org.apache.commons.exec.LogOutputStream * * @author Roberto E. Escobar */ public abstract class ForwardingStream extends OutputStream {
From source file org.ivoa.http.ByteBufferStream.java
/**
* This class implements an output stream in which the data is written into a byte array. The buffer automatically
* grows as data is written to it. The data can be retrieved using <code>toByteArray()</code> and
* <code>toString()</code>.<p>Closing a <tt>ByteArrayOutputStream</tt> has no effect. The methods in this class can
* be called after the stream has been closed without generating an <tt>IOException</tt>.</p>
* TODO LAURENT : use better buffer present in voparis java library ...
From source file com.googlecode.psiprobe.tools.LogOutputStream.java
/**
* An {@code OutputStream} which writes to a commons-logging {@code Log} at a
* particular level.
*
* @author Mark Lewis
*/
From source file net.testdriven.psiprobe.tools.LogOutputStream.java
/**
* An {@code OutputStream} which writes to a commons-logging {@code Log} at a
* particular level.
*
* @author Mark Lewis
*/
From source file com.pagecrumb.proxy.wrapper.StringOutputStream.java
/** * Utility class to output stream a String. * @author kerby * */ public class StringOutputStream extends OutputStream {
From source file Main.java
class ByteBufferBackedOutputStream extends OutputStream { ByteBuffer buf; ByteBufferBackedOutputStream(ByteBuffer buf) { this.buf = buf; }
From source file fr.xebia.jms.BytesMessageOutputStream.java
/**
* <p>
* Small modification on
* {@link org.springframework.ws.transport.jms.BytesMessageOutputStream} :
* <ul>
* <li>make class <code>public</code> instead of <code>protected</code>,</li>
From source file org.jbpm.bpel.tools.LogOutputStream.java
/** * @author Alejandro Guizar * @version $Revision$ $Date: 2008/02/05 05:37:34 $ */ public class LogOutputStream extends OutputStream {
From source file org.slc.sli.bulk.extract.files.MultiOutputStream.java
/** * Support multiple output stream. * @author tke * */ public class MultiOutputStream extends OutputStream {