Here you can find the source of readUB1(ByteBuffer buffer)
public static int readUB1(ByteBuffer buffer)
//package com.java2s; //License from project: Apache License import java.nio.ByteBuffer; public class Main { public static int readUB1(ByteBuffer buffer) { int ret = buffer.get() & 0xff; return ret; }// www . j a v a 2 s . c om }