bytes2HexString

Posted kakaisgood

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bytes2HexString相关的知识,希望对你有一定的参考价值。

public static String bytes2HexString(byte[] b) {
String r = "";

for (int i = 0; i < b.length; i++) {
String hex = Integer.toHexString(b[i] & 0xFF);
if (hex.length() == 1) {
hex = ‘0‘ + hex;
}
r += hex.toUpperCase()+" ";
}

return r;
}

 

 

bytes2HexString(OldFile.getValue().getBytes())

以上是关于bytes2HexString的主要内容,如果未能解决你的问题,请参考以下文章