在Java程序中计算zip文件的md5哈希值
我有一个 zip 文件,在我的 Java 代码中我想计算 zip 文件的 md5 哈希值。有没有我可以用于此目的的 java 库?一些例子将非常感激。
谢谢
I have a zip file, and in my Java code i want to calculate the md5 hash of the zip file. Is there any java libary i can use for this purpose ?. Some example would be really appreciated.
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
几周前,我通过这篇文章实现了这一点:
http://www.javalobby。 org/java/forums/t84420.html
只是为了拥有 stackoveflow:
I got that working a few weeks ago with this Article here:
http://www.javalobby.org/java/forums/t84420.html
Just to have it a stackoveflow:
还有一个选项可以使用 Apache Codec 来实现这一点
There is also an option to do that with Apache Codec like that