Java tutorial
//package com.java2s; public class Main { public static short toShort(byte[] bytes) { return (short) (((-(short) Byte.MIN_VALUE + (short) bytes[0]) << 8) - (short) Byte.MIN_VALUE + (short) bytes[1]); } }