Here you can find the source of copyShortBufferAsByteBuffer( ShortBuffer paramShortBuffer)
public static ByteBuffer copyShortBufferAsByteBuffer( ShortBuffer paramShortBuffer)
//package com.java2s; import java.nio.ByteBuffer; import java.nio.ByteOrder; import java.nio.ShortBuffer; public class Main { public static ByteBuffer copyShortBufferAsByteBuffer( ShortBuffer paramShortBuffer) { ByteBuffer localByteBuffer = newByteBuffer(paramShortBuffer .remaining() * 2);/*from ww w .ja v a 2 s.c o m*/ 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; } }