MD5 比较两文件内容

public static String getFileMD5(File file) { 

  if (!file.isFile()) { 
    
    return null; 
  
  } 

  MessageDigest digest = null; 
  
  FileInputStream in = null; 
  
  byte buffer[] = new byte[1024]; 
  
  int len; 

  try { 
    
    digest = MessageDigest.getInstance("MD5"); 
    
    in = new FileInputStream(file); 
    
    while ((len = in.read(buffer, 0, 1024)) != -1) { 
    
    digest.update(buffer, 0, len); 
  
  } 
   
    in.close(); 
  
  } catch (Exception e) { 
  
    e.printStackTrace(); 
    
    return null; 
  
  } 

  BigInteger bigInt = new BigInteger(1, digest.digest()); 
 
  return bigInt.toString(16); 

} 

 

说明:

    该方法通过读取该文件,返回一个字符串。
    那么两文件通过equals就可以判断是否一致了。

你可能感兴趣的:(MD5)