是否可以访问WebView缓存?

发布于 2024-12-10 11:11:53 字数 76 浏览 0 评论 0原文

我有一个可以访问网页的 WebView。例如,当我离线时是否可以访问之前下载的图像? 如果可能的话我该怎么做?

提前致谢。

I have a WebView in which I can access to web pages. Is it possible, when I am offline to have access for example to the images that have been previously downloaded?
And if it is possible how can I do this?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

寄人书 2024-12-17 11:11:53

是的,您可以,至少对于 Android 2.3 及更低版本。

如果您想查看整个缓存文件夹,它位于此处:

<android cache dir>/<your app package>/cache/webviewCache/

如果您已经知道缓存图像的 URL,则可以获取实际文件,如下所示:

String uri = "http://the url of the image that you need";
String hashCode = String.format("%08x", uri.hashCode());
File file = new File(new File(getCacheDir(), "webviewCache"), hashCode);
// if the call file.exist() returns true, then the file presents in the cache

Yes, you can, at least for Android 2.3 and lower.

If you want to see the entire cache folder, it is situated here:

<android cache dir>/<your app package>/cache/webviewCache/

If you already know the URL of the cached image, you can get the actual file so:

String uri = "http://the url of the image that you need";
String hashCode = String.format("%08x", uri.hashCode());
File file = new File(new File(getCacheDir(), "webviewCache"), hashCode);
// if the call file.exist() returns true, then the file presents in the cache
转身以后 2024-12-17 11:11:53

如果其他人遇到这个问题,我也遇到了类似的问题,我通过手动管理(保存和检索)我的应用程序缓存来解决它。 这是我的相关帖子。

If someone else faces this problem, I had a similar issue and I solve it managing(saving and retrieving) my app cache manually. Here it is my related post.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文