使用Java为大型文件生成MD5的速度非常慢
我正在使用Java为某些文件生成MD5哈希。我需要为多个文件生成一个MD5,总大小约为1 GB。这是我的代码:
private String generateMD5(SequenceInputStream inputStream){ if(inputStream==null){
return null;
}
MessageDigest md;
try {
int read =0;
byte[] buf = new byte[2048];
md = MessageDigest.getInstance("MD5");
while((read = inputStream.read(buf))>0){
md.update(buf,0,read);
}
byte[] hashValue = md.digest();
return new String(hashValue);
} catch (NoSuchAlgorithmException e) {
return null;
} catch (IOException e) {
return null;
}finally{
try {
if(inputStream!=null)inputStream.close();
} catch (IOException e) {
// ...
}
}
}
这似乎永远存在。如何提高效率?
回答:
您可能要使用Fast
MD5库。它比Java内置的MD5提供程序快得多,并且获取哈希的过程非常简单:
String hash = MD5.asHex(MD5.getHash(new File(filename)));
请注意,速度较慢也可能是由于文件I / O速度较慢所致。
以上是 使用Java为大型文件生成MD5的速度非常慢 的全部内容, 来源链接: utcz.com/qa/418403.html