List of utility methods to do Byte to Hex Convert
String | byteToHex(byte data) method to convert a byte to a hex string. StringBuilder buf = new StringBuilder(); buf.append(toHexChar((data >>> 4) & 0x0F)); buf.append(toHexChar(data & 0x0F)); return buf.toString(); |