List of utility methods to do ByteBuffer to Byte
byte | readByte(ByteBuffer buf, int i) read Byte return buf.get(i);
|
byte | readByte(ByteBuffer buf, int pos) Reads a specific byte value from the input byte buffer at the given offset. return (byte) (buf.get(pos) & 0xff); |