Here you can find the source of byte2Short(byte bin)
public static short byte2Short(byte bin)
//package com.java2s; public class Main { public static short byte2Short(byte bin) { return (short) (bin & 0xFF); }//from w w w. j a v a2 s . c om }