Here you can find the source of readLong(ByteBuffer buffer)
public static long readLong(ByteBuffer buffer)
//package com.java2s; //License from project: LGPL import java.nio.ByteBuffer; public class Main { public static long readLong(ByteBuffer buffer) { return buffer.getLong(); }/*from w w w .j a v a 2 s . c om*/ }