使用java提取zip文件的最佳方法是什么
我有一个压缩文件。该文件还包含各种目录和文件。我想提取所有这些并保存在指定的路径中。
那么如何编写一个java程序来提取压缩文件。
谢谢 苏尼尔·库马尔·萨胡
I have a a zipped file. That file contains various directories and files also. I want to extract all those and save in a specified path.
So How to write a java program to extract the zipped file.
Thanks
Sunil Kumar Sahoo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该考虑使用
java.util.zip
包。 Sun 提供了有关如何使用它的教程:使用 Java API 压缩和解压缩数据。You should look into using the
java.util.zip
package. Sun provides a tutorial on how to use it: Compressing and Decompressing Data Using Java APIs.java.util.zip.* 执行所需的操作。
通过 API 进行参考。如果您正在寻找示例 看看这个
java.util.zip.* does the required thing.
Go through the API for refernec. If you are looking for example LookThis