public final class BinaryIn extends Object
The binary input stream can be from standard input, a filename, a URL name, a Socket, or an InputStream.
All primitive types are assumed to be represented using their standard Java representations, in big-endian (most significant byte first) order.
The client should not intermix calls to BinaryIn with calls to In; otherwise unexpected behavior will result.
Constructor and Description |
---|
BinaryIn()
Create a binary input stream from standard input.
|
BinaryIn(InputStream is)
Create a binary input stream from an InputStream.
|
BinaryIn(Socket socket)
Create a binary input stream from a socket.
|
BinaryIn(String s)
Create a binary input stream from a filename or URL name.
|
BinaryIn(URL url)
Create a binary input stream from a URL.
|
Modifier and Type | Method and Description |
---|---|
boolean |
exists()
Does the binary input stream exist?
|
boolean |
isEmpty()
Returns true if the binary input stream is empty.
|
static void |
main(String[] args)
Test client.
|
boolean |
readBoolean()
Read the next bit of data from the binary input stream and return as a boolean.
|
byte |
readByte()
Read the next 8 bits from the binary input stream and return as an 8-bit byte.
|
char |
readChar()
Read the next 8 bits from the binary input stream and return as an 8-bit char.
|
char |
readChar(int r)
Read the next r bits from the binary input stream and return as an r-bit character.
|
double |
readDouble()
Read the next 64 bits from the binary input stream and return as a 64-bit double.
|
float |
readFloat()
Read the next 32 bits from standard input and return as a 32-bit float.
|
int |
readInt()
Read the next 32 bits from the binary input stream and return as a 32-bit int.
|
int |
readInt(int r)
Read the next r bits from the binary input stream return as an r-bit int.
|
long |
readLong()
Read the next 64 bits from the binary input stream and return as a 64-bit long.
|
short |
readShort()
Read the next 16 bits from the binary input stream and return as a 16-bit short.
|
String |
readString()
Read the remaining bytes of data from the binary input stream and return as a string.
|
public BinaryIn()
public BinaryIn(InputStream is)
public BinaryIn(Socket socket)
public BinaryIn(URL url)
public BinaryIn(String s)
public boolean exists()
public boolean isEmpty()
public boolean readBoolean()
RuntimeException
- if the input stream is emptypublic char readChar()
RuntimeException
- if there are fewer than 8 bits availablepublic char readChar(int r)
r
- number of bits to read.RuntimeException
- if there are fewer than r bits availablepublic String readString()
RuntimeException
- if the input stream is empty or if the number of bits
available is not a multiple of 8 (byte-aligned)public short readShort()
RuntimeException
- if there are fewer than 16 bits availablepublic int readInt()
RuntimeException
- if there are fewer than 32 bits availablepublic int readInt(int r)
r
- number of bits to read.RuntimeException
- if there are fewer than r bits available on standard inputpublic long readLong()
RuntimeException
- if there are fewer than 64 bits availablepublic double readDouble()
RuntimeException
- if there are fewer than 64 bits availablepublic float readFloat()
RuntimeException
- if there are fewer than 32 bits available on standard inputpublic byte readByte()
RuntimeException
- if there are fewer than 8 bits availablepublic static void main(String[] args)