Here you can find the source of copy(ByteBuffer from, ByteBuffer to)
static void copy(ByteBuffer from, ByteBuffer to)
//package com.java2s; //License from project: Open Source License import java.nio.ByteBuffer; public class Main { static void copy(ByteBuffer from, ByteBuffer to) { to.put(from);//from www . j a va 2 s . c o m to.flip(); } }