Android ByteBuffer Get getUnsignedByte(final ByteBuffer pByteBuffer)

Here you can find the source of getUnsignedByte(final ByteBuffer pByteBuffer)

Description

get Unsigned Byte

Declaration

public static short getUnsignedByte(final ByteBuffer pByteBuffer) 

Method Source Code

//package com.java2s;
import java.nio.ByteBuffer;

public class Main {
    public static short getUnsignedByte(final ByteBuffer pByteBuffer) {
        return (short) (pByteBuffer.get() & 0xFF);
    }//ww  w .ja  va  2  s  .  c o m

    public static short getUnsignedByte(final ByteBuffer pByteBuffer,
            final int pPosition) {
        return (short) (pByteBuffer.get(pPosition) & (short) 0xFF);
    }
}

Related

  1. getUnsignedByte(final ByteBuffer pByteBuffer, final int pPosition)
  2. getUnsignedInt(final ByteBuffer pByteBuffer)
  3. getUnsignedInt(final ByteBuffer pByteBuffer, final int pPosition)
  4. extractNullTerminatedString(ByteBuffer bb)