Method readUnsignedByte()
Return type: int
Member of:
java.io.DataInputStream
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
int b = in.readUnsignedByte(); // Note that the byte must be treated as unsigned.
2
int count = in.readUnsignedByte();
3
int start = stream.readUnsignedByte(); // number of identical characters at the beginning
4
int unitID = m_Input.readUnsignedByte();
5
int tag = in.readUnsignedByte();
6
int cpTag = cpStream.readUnsignedByte();
7
opcode = bytes.readUnsignedByte();
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.