Android:将时间戳添加到 WebView 的 URL
首先,我不是程序员,我的妻子让我学习如何为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这会将当前时间(以毫秒为单位)添加到 URL 的末尾。
This will put the current time in milliseconds on to the end of your URL.