Java examples for java.nio:ByteBuffer Long
copy Long Buffer As Byte Buffer
//package com.java2s; import java.nio.ByteBuffer; import java.nio.ByteOrder; import java.nio.LongBuffer; public class Main { public static ByteBuffer copyLongBufferAsByteBuffer( LongBuffer paramLongBuffer) { ByteBuffer localByteBuffer = newByteBuffer(paramLongBuffer .remaining() * 8);/*from w w w. java2 s . com*/ paramLongBuffer.mark(); localByteBuffer.asLongBuffer().put(paramLongBuffer); paramLongBuffer.reset(); localByteBuffer.rewind(); return localByteBuffer; } public static ByteBuffer newByteBuffer(int paramInt) { ByteBuffer localByteBuffer = ByteBuffer.allocateDirect(paramInt); localByteBuffer.order(ByteOrder.nativeOrder()); return localByteBuffer; } }