unsigned Byte To Int
class DataUtils { public static int unsignedByteToInt(final byte bByte) { return bByte & 0xFF; } }