Here you can find the source of getUnsignedShort(final ByteBuffer pByteBuffer)
public static int getUnsignedShort(final ByteBuffer pByteBuffer)
//package com.java2s; import java.nio.ByteBuffer; public class Main { public static int getUnsignedShort(final ByteBuffer pByteBuffer) { return pByteBuffer.getShort() & 0xFFFF; }/*from ww w . j a va 2 s . co m*/ public static int getUnsignedShort(final ByteBuffer pByteBuffer, final int pPosition) { return pByteBuffer.getShort(pPosition) & 0xFFFF; } }