We would like to know how to use the absolute get().
//from w w w. j ava 2 s . c om import java.nio.ByteBuffer; public class Main { public static void main(String[] argv) throws Exception { ByteBuffer buf = ByteBuffer.allocateDirect(10); byte b = buf.get(5); // position=0 } }