List of usage examples for java.nio ShortBuffer mark
public final Buffer mark()
reset()
. From source file:Main.java
public static ByteBuffer copyShortBufferAsByteBuffer(ShortBuffer buf) { ByteBuffer dest = newByteBuffer(buf.remaining() * SIZEOF_SHORT); buf.mark(); dest.asShortBuffer().put(buf);/*w w w. j a v a 2s .com*/ buf.reset(); dest.rewind(); return dest; }