public class InputStreamDataInput extends DataInput implements Closeable
DataInput wrapping a plain InputStream.| Constructor and Description | 
|---|
InputStreamDataInput(InputStream is)  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
close()  | 
byte | 
readByte()
Reads and returns a single byte. 
 | 
void | 
readBytes(byte[] b,
         int offset,
         int len)
Reads a specified number of bytes into an array at the specified offset. 
 | 
clone, readBytes, readInt, readLELongs, readLong, readMapOfStrings, readSetOfStrings, readShort, readString, readVInt, readVLong, readZInt, readZLong, skipBytespublic InputStreamDataInput(InputStream is)
public byte readByte()
              throws IOException
DataInputreadByte in class DataInputIOExceptionDataOutput.writeByte(byte)public void readBytes(byte[] b,
                      int offset,
                      int len)
               throws IOException
DataInputreadBytes in class DataInputb - the array to read bytes intooffset - the offset in the array to start storing byteslen - the number of bytes to readIOExceptionDataOutput.writeBytes(byte[],int)public void close()
           throws IOException
close in interface Closeableclose in interface AutoCloseableIOExceptionCopyright © 2000-2021 Apache Software Foundation. All Rights Reserved.