Here you can find the source of getInt8(ByteBuffer input)
static int getInt8(ByteBuffer input)
//package com.java2s; //License from project: Open Source License import java.nio.ByteBuffer; public class Main { static int getInt8(ByteBuffer input) { return input.get(); }//from w w w . j av a 2 s .c o m }