List of utility methods to do File Content Compare
boolean | equals(File file1, File file2) Tests whether the contents of two files equals each other by performing a byte-by-byte comparison. if (file1.length() != file2.length()) { return false; InputStream is1 = null; InputStream is2 = null; try { is1 = new FileInputStream(file1); is2 = new FileInputStream(file2); ... |