List of usage examples for java.io InputStream subclass-usage
From source file com.drive.student.xutils.http.ResponseStream.java
/** * Author: wyouflf * Date: 13-7-31 * Time: ?3:27 */ public class ResponseStream extends InputStream {
From source file SmartEncodingInputStream.java
/**
* <p>
* <code>SmartEncodingInputStream</code> extends an <code>InputStream</code> with a special
* constructor and a special method for dealing with text files encoded within different charsets.
* </p>
* <p>
From source file org.archive.wayback.core.Resource.java
/**
* Abstraction on top of a document stored in a WaybackCollection.
*
* TODO: This implementation needs some pretty drastic refactoring.. May have to wait
* for 2.0. This should be a byte-oriented record, and allow wrapping the
* interior byte-stream in on the more full featured HTTP libraries
From source file org.nuxeo.ecm.core.api.SerializableInputStream.java
/**
* A serializable input stream.
* <p>
* Note: The stream is closed after the object is serialized.
*
* @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a>
From source file com.sina.http.HttpMethodReleaseInputStream.java
/**
* Utility class to wrap InputStreams obtained from an HttpClient library's
* HttpMethod object, and ensure the stream and HTTP connection are properly
* released.
* <p>
* This input stream wrapper is used to ensure that input streams obtained
From source file com.smartitengineering.util.simple.io.BufferedInputStream.java
/** * * @author imyousuf */ public class BufferedInputStream extends InputStream {
From source file pt.lunacloud.http.HttpMethodReleaseInputStream.java
/**
* Utility class to wrap InputStreams obtained from an HttpClient library's
* HttpMethod object, and ensure the stream and HTTP connection are properly
* released.
* <p>
* This input stream wrapper is used to ensure that input streams obtained
From source file com.smartman.redpaperhelper.xutils.http.ResponseStream.java
/** * Author: wyouflf * Date: 13-7-31 * Time: ?3:27 */ public class ResponseStream extends InputStream {
From source file de.zib.sfs.WrappedFSDataInputStream.java
public class WrappedFSDataInputStream extends InputStream implements PositionedReadable, Seekable { private final FSDataInputStream in; private final int fd; private final String hostname;
From source file ResettableFileInputStream.java
/** * @author Federico Barbieri <fede@apache.org> */ public class ResettableFileInputStream extends InputStream { protected static final int DEFAULT_BUFFER_SIZE = 1024;