Java tutorial
//package com.java2s; import java.nio.ByteBuffer; public class Main { public static byte[] getCharacteristicWriteByteArray(int data) { // Designed by our hardware, characteristic short inputShort = ((short) data); byte[] inputData = ByteBuffer.allocate(6).putShort(inputShort).array(); return inputData; } }