copy Short Buffer - Java java.nio

Java examples for java.nio:ShortBuffer

Description

copy Short Buffer

Demo Code


//package com.java2s;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;

import java.nio.ShortBuffer;

public class Main {
    public static ShortBuffer copyShortBuffer(ShortBuffer paramShortBuffer) {
        return copyShortBufferAsByteBuffer(paramShortBuffer)
                .asShortBuffer();/*from  ww  w. j  av a 2s.  co m*/
    }

    public static ByteBuffer copyShortBufferAsByteBuffer(
            ShortBuffer paramShortBuffer) {
        ByteBuffer localByteBuffer = newByteBuffer(paramShortBuffer
                .remaining() * 2);
        paramShortBuffer.mark();
        localByteBuffer.asShortBuffer().put(paramShortBuffer);
        paramShortBuffer.reset();
        localByteBuffer.rewind();
        return localByteBuffer;
    }

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

Related Tutorials