Skip to content

Instantly share code, notes, and snippets.

@pantos27
Created February 8, 2017 11:29
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 pantos27/2e737507ddc3f614f104ac07729648d7 to your computer and use it in GitHub Desktop.
Save pantos27/2e737507ddc3f614f104ac07729648d7 to your computer and use it in GitHub Desktop.
Hex to byte[] and byte[] to Hex
public static byte[] hexStringToByteArray(String s) {
int len = s.length();
byte[] data = new byte[len / 2];
for (int i = 0; i < len; i += 2) {
data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4)
+ Character.digit(s.charAt(i+1), 16));
}
return data;
}
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);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment