Java ByteBuffer Copy copyByteBuffer(ByteBuffer buf)

Here you can find the source of copyByteBuffer(ByteBuffer buf)

Description

copy Byte Buffer

License

Apache License

Declaration

public static ByteBuffer copyByteBuffer(ByteBuffer buf) 

Method Source Code

//package com.java2s;
/**//from   w w w .  ja v a  2  s . co m
 * Copyright 2008 - 2011
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 * 
 * @project loonframework
 * @author chenpeng
 * @email?ceponline@yahoo.com.cn
 * @version 0.1
 */

import java.nio.ByteBuffer;
import java.nio.ByteOrder;

public class Main {
    public static ByteBuffer copyByteBuffer(ByteBuffer buf) {
        ByteBuffer dest = newByteBuffer(buf.remaining());
        buf.mark();
        dest.put(buf);
        buf.reset();
        dest.rewind();
        return dest;
    }

    public static ByteBuffer newByteBuffer(int numElements) {
        ByteBuffer bb = ByteBuffer.allocateDirect(numElements);
        bb.order(ByteOrder.nativeOrder());
        return bb;
    }
}

Related

  1. copy(final ByteBuffer from, final ByteBuffer to)
  2. copy2Buffer(byte[] src, int srcOff, int srcLen, ByteBuffer dst, int dstOff)
  3. copyBinary(final ByteBuffer orig)
  4. copyBuffer(ByteBuffer dest, int pos1, ByteBuffer src, int len)
  5. copyBufferToStream(OutputStream out, ByteBuffer in, int offset, int length)
  6. copyByteBuffer(ByteBuffer src)
  7. copyByteBuffer(ByteBuffer srcBuf, int srcStep, ByteBuffer dstBuf, int dstStep)
  8. copyByteBuffer(final ByteBuffer pBuffer)
  9. copyByteBuffer(java.nio.ByteBuffer data)