将十六进制转换为字符串

将十六进制转换为字符串,第1张

将十六进制转换为字符串

您可以

bytes[]
从转换后的字符串中进行重构,这是一种实现方法

public String fromHex(String hex) throws UnsupportedEncodingException {    hex = hex.replaceAll("^(00)+", "");    byte[] bytes = new byte[hex.length() / 2];    for (int i = 0; i < hex.length(); i += 2) {        bytes[i / 2] = (byte) ((Character.digit(hex.charAt(i), 16) << 4) + Character.digit(hex.charAt(i + 1), 16));    }    return new String(bytes);}

另一种方法是使用

DatatypeConverter
,从
javax.xml.bind
包:

public String fromHex(String hex) throws UnsupportedEncodingException {    hex = hex.replaceAll("^(00)+", "");    byte[] bytes = DatatypeConverter.parseHexBinary(hex);    return new String(bytes, "UTF-8");}

单元测试以验证:

@Testpublic void test() throws UnsupportedEncodingException {    String[] samples = { "hello", "all your base now belongs to us, welcome our machine overlords"    };    for (String sample : samples) {        assertEquals(sample, fromHex(toHex(sample)));    }}

注:领先剥离

00
fromHex
仅仅是必要的,因为的
"%040x"
你的填充
toHex
方法。如果您不介意将其替换为简单的
%x
,则可以将此行放在
fromHex

    hex = hex.replaceAll("^(00)+", "");


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5135656.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存