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 com.sslexplorer.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.

From source file bova.rtmapi.RestClient.java

class DoneHandlerInputStream extends FilterInputStream {
    private boolean done;

    public DoneHandlerInputStream(InputStream stream) {
        super(stream);
    }

From source file 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().
 * 
 * @version $Revision: 12504 $

From source file no.nordicsemi.android.nrftoolbox.dfu.HexInputStream.java

public class HexInputStream extends FilterInputStream {
    private final int LINE_LENGTH = 16;
    private final byte[] localBuf;
    private int localPos;
    private int pos;
    private int size;

From source file EchoFilterTest.java

/**
 * The FilteredSoundStream class is a FilterInputStream that applies a
 * SoundFilter to the underlying input stream.
 * 
 * @see SoundFilter
 */

From source file IcoCodec.java

class BinaryInputStream extends FilterInputStream {
    public BinaryInputStream(InputStream in) {
        super(in);
    }

    public void skip(int toskip) throws IOException {

From source file org.openscience.jvxl.Jvxl.java

class MonitorInputStream extends FilterInputStream {
    int length;
    int position;
    int markPosition;
    int readEventCount;
    long timeBegin;

From source file com.example.util.ImageUtils.java

class FlushedInputStream extends FilterInputStream {
    public FlushedInputStream(InputStream inputStream) {
        super(inputStream);
    }

    @Override

From source file com.mappn.gfan.common.util.ImageUtils.java

class FlushedInputStream extends FilterInputStream {
    public FlushedInputStream(InputStream inputStream) {
        super(inputStream);
    }

    @Override

From source file Filter3dTest.java

/**
 * The FilteredSoundStream class is a FilterInputStream that applies a
 * SoundFilter to the underlying input stream.
 * 
 * @see SoundFilter
 */