Here you can find the source of byteToInt(byte Byte)
public static int byteToInt(byte Byte)
//package com.java2s; //License from project: Open Source License public class Main { public static int byteToInt(byte Byte) { int byte_H = (Byte >> 4) & 0x0f; int byte_L = Byte & 0x0f; return byte_H * 16 + byte_L; }/* w w w . j a v a2s. c om*/ }