Example usage for java.io DataInputStream subclass-usage

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

Introduction

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

Usage

From source file BitInputStream.java

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

From source file com.skalski.raspberrycontrol.Mjpeg.Mjpeg_InputStream.java

public class Mjpeg_InputStream extends DataInputStream {
    private final byte[] SOI_MARKER = { (byte) 0xFF, (byte) 0xD8 };
    private final byte[] EOF_MARKER = { (byte) 0xFF, (byte) 0xD9 };
    private final String CONTENT_LENGTH = "Content-Length";
    private final static int HEADER_MAX_LENGTH = 100;
    private final static int FRAME_MAX_LENGTH = 40000 + HEADER_MAX_LENGTH;

From source file com.facebook.infrastructure.io.DataInputBuffer.java

/**
 * An implementation of the DataInputStream interface. This instance is completely thread 
 * unsafe.
 * 
 * Author : Avinash Lakshman ( alakshman@facebook.com) & Prashant Malik ( pmalik@facebook.com )
 */

From source file com.thecorpora.qbo.androidapk.MjpegInputStream.java

public class MjpegInputStream extends DataInputStream {
    private final byte[] SOI_MARKER = { (byte) 0xFF, (byte) 0xD8 };
    private final byte[] EOF_MARKER = { (byte) 0xFF, (byte) 0xD9 };
    private final String CONTENT_LENGTH = "Content-Length";
    private final static int HEADER_MAX_LENGTH = 100;
    private final static int FRAME_MAX_LENGTH = 40000 + HEADER_MAX_LENGTH;

From source file org.apache.hama.bsp.message.io.SpilledDataInputBuffer.java

/**
 * <code>SpilledDataInputBuffer</code> class is designed to read from the
 * spilling buffer. Depending on whether the records were spilled or not, the
 * stream provides data from a list of byte arrays or from file. The contents of
 * the file are asynchronously loaded in the byte arrays as the values are read.
 * 

From source file org.diorite.nbt.NbtInputStream.java

/**
 * Represent nbt input stream, used to read nbt tags.
 */
public class NbtInputStream extends DataInputStream {
    /**
     * Construct new nbt stream for given input stream.

From source file com.exadel.flamingo.flex.messaging.amf.io.AMF3Deserializer.java

/**
 * @author Franck WOLFF
 */
public class AMF3Deserializer extends DataInputStream implements ObjectInput, AMF3Constants {

    ///////////////////////////////////////////////////////////////////////////