Here you can find the source of ConvToShortBuffer(short buf[])
public static ShortBuffer ConvToShortBuffer(short buf[])
//package com.java2s; import java.nio.ShortBuffer; public class Main { public static ShortBuffer ConvToShortBuffer(short buf[]) { ShortBuffer ReturnBuffer = ShortBuffer.allocate(buf.length); ReturnBuffer.put(buf);/*from w w w . j ava 2 s .c o m*/ ReturnBuffer.position(0); return ReturnBuffer; } }