unsigned Byte To Int : Byte « Date Type « Android






unsigned Byte To Int

   

 class DataUtils  {

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

}

   
    
    
  








Related examples in the same category

1.Four Bytes To Long
2.Byte Convert
3.Bytes to KB
4.Byte Converter
5.byte To Unsigned Int