2022年8月29日
摘要: public static String toHexString(byte[] b) { StringBuffer sb = new StringBuffer(); for (int i = 0; i < b.length; i++) { //& 0x0F 取出后四位 sb.append(HexUt 阅读全文
posted @ 2022-08-29 16:45 如履薄地 阅读(66) 评论(0) 推荐(0)