Here you can find the source of byteToUnsignedByte(byte b)
private static short byteToUnsignedByte(byte b)
//package com.java2s; public class Main { private static short byteToUnsignedByte(byte b) { return (short) (b & 0xff); }//from ww w. j a v a2s.c o m }