使用Apache的Hex类实现Hex(16进制字符串和)和字节数组的互转
Posted FrankYou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Apache的Hex类实现Hex(16进制字符串和)和字节数组的互转相关的知识,希望对你有一定的参考价值。
包名称:org.apache.commons.codec.binary
类名称:org.apache.commons.codec.binary.Hex
1、字节数组(byte[])转为十六进制(Hex)字符串
public static String byte2hex(byte[] input) { return Hex.encodeHexString(input); }
2、十六进制字符串(Hex)转字节数字(byte[])
public static byte[] hex2byte(String input) { return Hex.decodeHex(input.toCharArray()); }
以上是关于使用Apache的Hex类实现Hex(16进制字符串和)和字节数组的互转的主要内容,如果未能解决你的问题,请参考以下文章