Here you can find the source of makeByteBuffer(byte[] arr)
Parameter | Description |
---|---|
arr | The array |
public static ByteBuffer makeByteBuffer(byte[] arr)
//package com.java2s; import java.nio.ByteBuffer; import java.nio.ByteOrder; public class Main { /**// ww w . ja va 2s. c om * Make a direct NIO ByteBuffer from an array of floats * * @param arr * The array * @return The newly created FloatBuffer */ public static ByteBuffer makeByteBuffer(byte[] arr) { ByteBuffer bb = ByteBuffer.allocateDirect(arr.length); bb.order(ByteOrder.nativeOrder()); bb.put(arr); bb.position(0); return bb; } public static ByteBuffer makeByteBuffer(int size) { ByteBuffer bb = ByteBuffer.allocateDirect(size); bb.position(0); return bb; } }