new Short Buffer - Java java.nio

Java examples for java.nio:ShortBuffer

Description

new Short Buffer

Demo Code


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

import java.nio.ShortBuffer;

public class Main {
    public static void main(String[] argv) throws Exception {
        int paramInt = 2;
        System.out.println(newShortBuffer(paramInt));
    }/* w w  w.  j  a v a2  s. c om*/

    public static ShortBuffer newShortBuffer(int paramInt) {
        ByteBuffer localByteBuffer = newByteBuffer(paramInt * 2);
        return localByteBuffer.asShortBuffer();
    }

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

Related Tutorials