摘要:
public static byte[] byteMerge(byte[] bt1, byte[] bt2) { byte[] bt3 = new byte[bt1.length + bt2.length]; System.arraycopy(bt1, 0, bt3, 0, bt1.length); 阅读全文
摘要:
//Tribute to python public static byte[] bytesFromHex(String hexStr) { int len = hexStr.length()/2; byte[] result = new byte[len]; for (int i = 0; i < 阅读全文