Mega Code Archive

 
Categories / Android / Date Type
 

Unsigned Byte To Int

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