使用 ZipFile 类从多个文件的 zip 存档中解压缩文件
我想使用 ZipFile 类使用文件名从多个文件的存档中解压缩文件。如何获取 zip 文件名和目录的字符串传递给 ZipFile 构造函数?
I'd like to use the ZipFile
class to unzip a file using its name from an archive of multiple files. How can I get the string of the zip file name and directory to pass to the ZipFile
constructor?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 AssetManager 和 ZipInputStream
http://developer.android.com/reference/android/content/ res/AssetManager.html
You can use the AssetManager and ZipInputStream
http://developer.android.com/reference/android/content/res/AssetManager.html