List of utility methods to do Byte Array Save to File
void | fileDump(String fileName, byte[] data) Writes a large byte array to a file. try { FileOutputStream os = new FileOutputStream(fileName); os.write(data); os.close(); catch (IOException ex) { ex.printStackTrace(); |