Android字節、十進制、十六進制、字符串之間的相互轉換

1. 字節轉10進制html 直接使用(int)類型轉換。數組 /* * 字節轉10進制 */ public static int byte2Int(byte b){ int r = (int) b; return r; } 2. 10進制轉字節函數 直接使用(byte)類型轉換。code /* * 10進制轉字節
相關文章
相關標籤/搜索