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