Example usage for java.io InputStream subclass-usage

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

Introduction

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

Usage

From source file com.top.xutils.http.ResponseStream.java

/**
 * Author: wyouflf
 * Date: 13-7-31
 * Time: ?3:27
 */
public class ResponseStream extends InputStream {

From source file org.apache.hadoop.fs.redfish.RedfishDataInputStream.java

class RedfishDataInputStream extends InputStream implements Seekable, PositionedReadable, Closeable {
    private long m_ofe;

    static {
        try {
            System.loadLibrary("hfishc");

From source file com.jeson.xutils.http.ResponseStream.java

/**
 * Author: wyouflf
 * Date: 13-7-31
 * Time: ?3:27
 */
public class ResponseStream extends InputStream {

From source file com.lidroid.jxutils.http.ResponseStream.java

/**
 * Author: wyouflf
 * Date: 13-7-31
 * Time: ?3:27
 */
public class ResponseStream extends InputStream {

From source file com.robonobo.common.io.HttpInputStream.java

public class HttpInputStream extends InputStream {
    InputStream innerStream;
    protected String url;

    public HttpInputStream(String url) throws IOException {
        super();

From source file cn.xdf.thinkutils.http.ResponseStream.java

/**
 * Author: wyouflf
 * Date: 13-7-31
 * Time: ?3:27
 */
public class ResponseStream extends InputStream {

From source file com.sina.scs.model.RepeatableInputStream.java

/**
 * A repeatable input stream wrapper for any input stream. This input stream
 * relies on buffered data to repeat, and can therefore only be repeated when
 * less data has been read than this buffer can hold.
 * <p>
 * <b>Note:</b> Always use a {@link RepeatableFileInputStream} instead of this

From source file io.milton.httpclient.NotifyingFileInputStream.java

public class NotifyingFileInputStream extends InputStream {

    private final InputStream fin;
    private final InputStream wrapped;
    private final ProgressListener listener;
    private final String fileName;

From source file com.sina.scs.RepeatableFileInputStream.java

/**
 * A repeatable input stream for files. This input stream can be repeated an
 * unlimited number of times, without any limitation on when a repeat can occur.
 */
public class RepeatableFileInputStream extends InputStream {
    private static final Log log = LogFactory.getLog(RepeatableFileInputStream.class);

From source file org.apache.padaf.preflight.font.type1.PeekInputStream.java

public class PeekInputStream extends InputStream {
    private byte[] content = new byte[0];
    private int position = 0;

    public PeekInputStream(InputStream source) throws IOException {
        ByteArrayOutputStream bos = new ByteArrayOutputStream();