Example usage for java.io FilterInputStream subclass-usage

List of usage examples for java.io FilterInputStream subclass-usage

Introduction

In this page you can find the example usage for java.io FilterInputStream subclass-usage.

Usage

From source file MD5InputStream.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 org.mortbay.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 org.openqa.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 org.rssowl.core.internal.connection.HttpConnectionInputStream.java

/**
 * <p>
 * This kind of FilterInputStream makes sure that the GetMethod responsible for
 * the given InputStream is releasing its connection after the stream has been
 * closed. This class is also keeping two important headers to be used for the
 * Conditional GET Mechanism of HTTP.

From source file fr.gael.dhus.network.RegulatedInputStream.java

public class RegulatedInputStream extends FilterInputStream {

    /**
     * Default buffer size in bytes.
     */
    public static final int DEFAULT_BUFFER_SIZE = 8192;

From source file org.rssowl.core.connection.HttpConnectionInputStream.java

/**
 * <p>
 * This kind of FilterInputStream makes sure that the HTTP Method responsible
 * for the given InputStream is releasing its connection after the stream has
 * been closed. This class is also keeping two important headers to be used for
 * the Conditional GET Mechanism of HTTP.

From source file QPDecoderStream.java

/**
 * This class implements a QP 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 net.matuschek.util.ChunkedInputStream.java

/** 
 * An InputStream that implements HTTP/1.1 chunking.
 * <P>
 * This class lets a Servlet read its request data as an HTTP/1.1 chunked
 * stream.  Chunked streams are a way to send arbitrary-length data without
 * having to know beforehand how much you're going to send.  They are

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 com.adito.core.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.