Android - 解压缩密码编码的 zip 文件
是否可以解压使用密码压缩的文件?
我进行了搜索,但在文档中找不到任何示例或提及。
文档或代码示例的链接会很棒。
谢谢你,
迈克
is it possible to unzip files that have been zipped using a password?
I have search and cannot find any examples or mentions in the docs.
A link to docs or code samples would be great.
Thank you,
Mike
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
参考这个问题:
如何解压密码Android 中受保护的文件
它使用 zip4j 库,该库在 Android 上运行得很好:
Refer to this question:
How to unzip a password protected file in Android
It uses a zip4j lib which works perfectly fine on android:
你是对的,java.util.zip包不支持密码压缩和解压缩功能。你必须自己寻找其他方法来实现它。我确实帮助搜索了一下,看看您是否觉得这个链接有用:)
http://blog.alutam。 com/2009/10/31/reading-password-protected-zip-files-in-java/
You are right, the java.util.zip package does not support password zipping and unzipping functionality. You have to find other ways to implement it yourself. I did help search a bit see if you find this link useful :)
http://blog.alutam.com/2009/10/31/reading-password-protected-zip-files-in-java/