Here you can find the source of readDouble(ByteBuffer buffer)
public static double readDouble(ByteBuffer buffer)
//package com.java2s; //License from project: LGPL import java.nio.ByteBuffer; public class Main { public static double readDouble(ByteBuffer buffer) { return buffer.getDouble(); }/*from w ww . j av a 2 s . c o m*/ }