List of utility methods to do Byte Array to Hex Convert
final StringBuilder builder = new StringBuilder(); for (byte b : byteArray) { builder.append(String.format("%02x", b)); return builder.toString();