Here you can find the source of shortToByteArray(short value)
public static final byte[] shortToByteArray(short value)
//package com.java2s; public class Main { public static final byte[] shortToByteArray(short value) { return new byte[] { (byte) (value >>> 8), (byte) value }; }/*from w w w. ja v a 2s . c o m*/ }