Android:将时间戳添加到 WebView 的 URL

发布于 2024-11-06 06:03:52 字数 441 浏览 1 评论 0原文

首先,我不是程序员,我的妻子让我学习如何为 Android 编程,因为她希望我为她制作一些在家里使用的应用程序。

我有一个基本的应用程序,可以将 JPG 加载到 WebView 窗口中。我读到,为了帮助管理缓存,向 URL 添加时间戳是一个好主意。

我不知道如何将时间戳添加到 URL 中。

这就是我现在所拥有的:

mWebView.loadUrl("http://www.website.com/webviewimage.jpg"+"?123");

我计划用时间戳替换“?123”,但我不确定如何输入它。我在代码的开头有这个,所以希望,我想我'我已经到一半了。:

import java.sql.Timestamp;

非常感谢你的帮助。

干杯,

帕特

For starters, I am not a programmer, my wife is making me learn how to program for Android because she wants me to make her some apps to use around the house.

I have a basic app that loads a JPG into a WebView window. I read that in order to help manage caching it's a good idea to add a timestamp to a URL.

I am not sure how to add a Timestamp into the URL.

This is what I have now:

mWebView.loadUrl("http://www.website.com/webviewimage.jpg"+"?123");

I plan to replace the "?123" with the Timestamp, but I'm not sure how to type this in. I have this in the beginning of my code so hopefully, I'm thinking I'm halfway there.:

import java.sql.Timestamp;

Thank you so much for your help.

Cheers,

Pat

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

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

发布评论

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

评论(1

倥絔 2024-11-13 06:03:52

这会将当前时间(以毫秒为单位)添加到 URL 的末尾。

mWebView.loadUrl("http://www.website.com/webviewimage.jpg?" + System.currentTimeMillis());

This will put the current time in milliseconds on to the end of your URL.

mWebView.loadUrl("http://www.website.com/webviewimage.jpg?" + System.currentTimeMillis());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文