Perl's pack function equivalent in Java

和自甴很熟 提交于 2019-12-01 23:57:55
artaxerxe

Perl's pack / unpack functions are a highly versatile conversion utility with its own format syntax (used in H* here, which makes it take an arbitrarily long hex string as input) of which there is no direct equivalent in the Java world. However, to translate...

$somevar = pack "H*", $vartoconvert;

...to Java, you can for example use:

byte[] somevar = javax.xml.bind.DatatypeConverter.parseHexBinary(vartoconvert);

For more information read the DatatypeConverter class reference from Javadocs.

String hex = "4a616d6573";
StringBuilder output = new StringBuilder();
for (int i = 0; i < hex.length(); i+=2) {
    String str = hex.substring(i, i+2);
    output.append((char)Integer.parseInt(str, 16));
}
System.out.println(output);
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!