public static byte[] hexStringToByteArray(String hex) { int l = hex.length(); byte[] data = new byte[l/2]; for (int i = 0; i < l; ...
確定! 回上一頁