Here you can find the source of copy(ByteBuffer source)
Parameter | Description |
---|---|
source | The ByteBuffer to copy from |
public static ByteBuffer copy(ByteBuffer source)
//package com.java2s; /*//from www . ja va 2 s . co m * ByteUtils.java * Copyright (C) 2008 Asger Blekinge-Rasmussen * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ import java.nio.ByteBuffer; public class Main { /** * Creates a new ByteBuffer of length source.remaining(), and copies source * into it. Source position will not be changed. * @param source The ByteBuffer to copy from * @return A copy of the remaining bytes in source */ public static ByteBuffer copy(ByteBuffer source) { ByteBuffer target = ByteBuffer.wrap(new byte[source.remaining()]); int position = source.position(); target.put(source); source.position(position); return target; } }