DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Decode/encode Hex String
// decode/encode hex string
public static String toHexString(byte[] ba) {
String hex = "";
for(int i = 0; i < ba.length; i++)
hex += zeroPad(Integer.toHexString(ba[i] & 0xFF).toUpperCase(), 2);
return hex;
}
public static byte[] fromHexString(String hex) {
ByteArrayOutputStream bas = new ByteArrayOutputStream();
for (int i = 0; i < hex.length(); i+=2) {
int b = Integer.parseInt(hex.substring(i, i + 2), 16);
bas.write(b);
}
return bas.toByteArray();
}





