码迷,mamicode.com
首页 > 其他好文 > 详细

bytes2HexString

时间:2018-01-31 14:20:23      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:[]   public   log   bsp   ring   i++   blog   uppercase   int   

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

标签:[]   public   log   bsp   ring   i++   blog   uppercase   int   

原文地址:https://www.cnblogs.com/kakaisgood/p/8391534.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!