摘要: byte转换为16进制 public static String GetByte2Str(byte b) { byte[] buff = new byte[2]; buff[0] = mHex[(b >> 4) & 0x0f]; buff[1] = mHex[b & 0x0f]; return ne 阅读全文
posted @ 2017-08-24 11:30 水柠檬QAQ 阅读(290) 评论(0) 推荐(0)