List of usage examples for java.io FilterInputStream subclass-usage
From source file BASE64DecoderStream.java
/**
* This class implements a BASE64 Decoder. It is implemented as
* a FilterInputStream, so one can just wrap this class around
* any input stream and read bytes from this filter. The decoding
* is done as the bytes are read out.
*
From source file org.openqa.jetty.http.HttpInputStream.java
/** HTTP Chunking InputStream.
* This FilterInputStream acts as a BufferedInputStream until
* setChunking(true) is called. Once chunking is
* enabled, the raw stream is chunk decoded as per RFC2616.
*
* The "8859-1" encoding is used on underlying LineInput instance for
From source file org.apache.axis.attachments.BoundaryDelimitedStream.java
/** * This class takes the input stream and turns it multiple streams. * * @author Rick Rineholt */ public class BoundaryDelimitedStream extends java.io.FilterInputStream {
From source file hudson.org.apache.tools.tar.TarInputStream.java
/**
* The TarInputStream reads a UNIX tar archive as an InputStream.
* methods are provided to position at each successive entry in
* the archive, and the read each entry as a normal input stream
* using read().
* @deprecated Use {@link org.apache.commons.compress.archivers.tar.TarArchiveInputStream} instead
From source file org.apache.axiom.attachments.BoundaryDelimitedStream.java
/** This class takes the input stream and turns it multiple streams. */ public class BoundaryDelimitedStream extends java.io.FilterInputStream { /** The <code>Log</code> that this class should log all events to. */ protected static Log log = LogFactory.getLog(BoundaryDelimitedStream.class.getName());
From source file com.casewaresa.framework.util.LegacyJasperInputStream.java
/**
* This is a decorator around an InputStream, which will convert a modern XSD
* based Jasper design into the legacy DTD version. This is desirable since
* modern tools i.e. the iReport plugin for NetBeans 6.5 generates designs based
* on the modern XSD schema, whereas the Jasper engine itself that we use
* apparently can not handle XSD but instead require DTD's.
From source file TraceInputStream.java
/**
* This class is a FilterInputStream that writes the bytes
* being read from the given input stream into the given output
* stream. This class is typically used to provide a trace of
* the data that is being retrieved from an input stream.
*
From source file FastBufferedInputStream.java
/**
* A <code>BufferedInputStream</code> adds
* functionality to another input stream-namely,
* the ability to buffer the input and to
* support the <code>mark</code> and <code>reset</code>
* methods. When the <code>BufferedInputStream</code>
From source file org.browsermob.proxy.jetty.util.LineInput.java
/** Fast LineInput InputStream.
* This buffered InputStream provides methods for reading lines
* of bytes. The lines can be converted to String or character
* arrays either using the default encoding or a user supplied
* encoding.
*
From source file net.lightbody.bmp.proxy.jetty.util.LineInput.java
/** Fast LineInput InputStream.
* This buffered InputStream provides methods for reading lines
* of bytes. The lines can be converted to String or character
* arrays either using the default encoding or a user supplied
* encoding.
*