Skip to content

Instantly share code, notes, and snippets.

@Gracker
Created August 11, 2014 08:20
Show Gist options
  • Save Gracker/38f7cc9823c5c5715f2a to your computer and use it in GitHub Desktop.
Save Gracker/38f7cc9823c5c5715f2a to your computer and use it in GitHub Desktop.
/**
* 将二进制转换成16进制
*
* @param buf
* @return
*/
public static String parseByte2HexStr(byte buf[]) {
StringBuffer sb = new StringBuffer();
for (int i = 0; i < buf.length; i++) {
String hex = Integer.toHexString(buf[i] & 0xFF);
if (hex.length() == 1) {
hex = '0' + hex;
}
sb.append(hex.toUpperCase());
}
return sb.toString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment