Skip to content

Instantly share code, notes, and snippets.

@JTejedor
Created January 16, 2014 15:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JTejedor/8456701 to your computer and use it in GitHub Desktop.
Save JTejedor/8456701 to your computer and use it in GitHub Desktop.
print in HEX a byte[] in String format.
final protected static char[] hexArray = "0123456789ABCDEF".toCharArray();
public static String bytesToHex(byte[] bytes) {
char[] hexChars = new char[bytes.length * 2];
for ( int j = 0; j < bytes.length; j++ ) {
int v = bytes[j] & 0xFF;
hexChars[j * 2] = hexArray[v >>> 4];
hexChars[j * 2 + 1] = hexArray[v & 0x0F];
}
return new String(hexChars);
}
@JTejedor
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment