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