摘要: public static byte[] byteMerge(byte[] bt1, byte[] bt2) { byte[] bt3 = new byte[bt1.length + bt2.length]; System.arraycopy(bt1, 0, bt3, 0, bt1.length); 阅读全文
posted @ 2022-04-29 16:21 bert_qin 阅读(726) 评论(0) 推荐(0) 编辑
摘要: //Tribute to python public static byte[] bytesFromHex(String hexStr) { int len = hexStr.length()/2; byte[] result = new byte[len]; for (int i = 0; i < 阅读全文
posted @ 2022-04-29 15:31 bert_qin 阅读(692) 评论(0) 推荐(0) 编辑