/**
* 获取单个文件的MD5值!
*
* @param file
* @return
*/
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);
}java获取文件MD5值
最新推荐文章于 2025-05-29 15:14:53 发布
本文介绍了一种通过Java实现的获取单个文件MD5值的方法。该方法使用MessageDigest类来生成文件的MD5散列值,并通过FileInputStream读取文件内容。最终将生成的大整数转换为16进制字符串作为文件的MD5值。
3822

被折叠的 条评论
为什么被折叠?



