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 xbird.util.net.InterruptableInputStream.java

/**
 * 
 * <DIV lang="en"></DIV>
 * <DIV lang="ja"></DIV>
 * 
 * @author Makoto YUI (yuin405+xbird@gmail.com)

From source file org.jets3t.service.io.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.
 *
 * @author James Murty
 */

From source file com.github.lpezet.antiope.dao.HttpMethodReleaseInputStream.java

public class HttpMethodReleaseInputStream extends InputStream {
    private static final Logger log = LoggerFactory.getLogger(HttpMethodReleaseInputStream.class);

    private InputStream inputStream = null;
    private HttpEntityEnclosingRequest httpRequest = null;
    private boolean alreadyReleased = false;

From source file com.norconex.importer.parser.impl.wordperfect.WPInputStream.java

/**
 * {@link InputStream} wrapper adding WordPerfect-specific byte-reading methods.
 * @author Pascal Essiembre
 * @since 2.1.0
 */
public class WPInputStream extends InputStream {

From source file org.apache.kylin.common.persistence.BrokenInputStream.java

public class BrokenInputStream extends InputStream {
    private static Logger logger = LoggerFactory.getLogger(BrokenInputStream.class);
    private final ByteArrayInputStream in;

    public BrokenInputStream(BrokenEntity brokenEntity) {
        final ByteArrayOutputStream out = new ByteArrayOutputStream();

From source file com.denimgroup.threadfix.sonarplugin.util.InputStreamLanguageDecorator.java

/**
 * Created by mcollins on 2/3/15.
 */
public class InputStreamLanguageDecorator extends InputStream {

    public static void main(String[] args) throws IOException {

From source file com.izforge.izpack.installer.web.LoggedInputStream.java

/**
 * Wraps an InputStream in order to track how much bytes are being read, and
 * then updates the progress dialog. When the stream is opened the progress
 * dialog shows up. When the stream is closed the dialog is disposed. Make sure
 * you are closing the streams.
 *

From source file com.ceph.rados.fs.RadosInputStream.java

public class RadosInputStream extends InputStream {

    private static IoCTX ioctx;
    private boolean closed;
    private long size = -1;
    private long pos = 0;

From source file com.adis.tools.http.ResponseStream.java

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

From source file org.tuleap.mylyn.task.core.internal.repository.TuleapAttachmentInputStream.java

/**
 * An input stream that iterates over file chunks to manage large files without consuming too much memory.
 *
 * @author <a href="mailto:laurent.delaigue@obeo.fr">Laurent Delaigue</a>
 */
public class TuleapAttachmentInputStream extends InputStream {