From the discussion here, and especially this answer, this is the function I currently use: private static final char HEX_ARRAY = "0123456789ABCDEF".toCharArray(); public static String bytesToHex(byte bytes) { char...
  • April 5, 2022
  • 0 Comments