Android:将ZIP解压到内存中并在WebView中显示其内容
我有一个 ZIP 文件形式的网站。我想将它解压到内存中(而不是本地磁盘),然后在WebView中显示它。该 ZIP 文件具有包含图像的图像目录,WebView 也应该可以访问这些文件。我正在考虑创建新的 ContentProvider,但我不确定在这种情况下我知道如何创建:)。
请帮助代码示例。 谢谢!
I have a website in a ZIP file. I would like to unzip it in memory (not to local disk) and then display it in WebView. This ZIP file has the image directory with images and these files should also be accessible to WebView. I'm thinking of creating new ContentProvider but I'm not sure I know how to in this case :).
Please help code examples.
Thx!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以研究两件事:
我的内容提供程序中有以下内容:
以及管道流:
You can look into 2 things:
I have the following in my content provider:
And the pipe stream: