create Buffer
import java.nio.ByteBuffer; import java.nio.ByteOrder; class IOUtils { public static ByteBuffer createBuffer() { ByteBuffer buffer = ByteBuffer.allocate(64); // 64 bytes max package // size buffer.order(ByteOrder.LITTLE_ENDIAN); buffer.putShort((short) 0); // Allocate a short for size return buffer; } }