登录
注册
写文章
发现
工具
java获取文件md5值
_3t3lfz KEKfID
编辑文章
java获取文件md5值
asfx站长
2020.12.03 19:59:00
阅读
798
maven依赖 ``` <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.15</version> </dependency> ``` 代码 ``` import org.apache.commons.codec.digest.DigestUtils; import java.io.FileInputStream; import java.io.IOException; public class Test { public static void main(String[] args) throws IOException { String path = "C:\\Users\\xx\\Desktop\\file\\images\\0.jpg"; String md5 = DigestUtils.md5Hex(new FileInputStream(path)); System.out.println(md5); } } ```
我的主页
退出