List of utility methods to do File Hex Dump
void | fileHexDump(String fileName, byte[] data) Writes a hex dump to a file for a large byte array. try { FileOutputStream os = new FileOutputStream(fileName); os.write(hexdump(data, true, 16, "").getBytes()); os.close(); catch (IOException ex) { ex.printStackTrace(); |