Here you can find the source of makeByteBuffer(int size)
public static ByteBuffer makeByteBuffer(int size)
//package com.java2s; import java.nio.ByteBuffer; import java.nio.ByteOrder; public class Main { /**//from w ww .j a va 2s . com * 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(byte[] arr, int length) { ByteBuffer bb = ByteBuffer.allocateDirect(length); bb.order(ByteOrder.nativeOrder()); bb.put(arr, 0, length); bb.position(0); return bb; } public static ByteBuffer makeByteBuffer(int size) { ByteBuffer bb = ByteBuffer.allocateDirect(size); bb.position(0); return bb; } }