Java获取Web资源的修改日期

发布于 2024-09-06 23:05:40 字数 172 浏览 7 评论 0原文

如何在 Java 中获取 Web 资源的修改日期?

URL url = new URL(urlString);
URLConnection connection = url.openConnection();
connection.connect();
// What now?

How do you get the modified date of a web resource in Java?

URL url = new URL(urlString);
URLConnection connection = url.openConnection();
connection.connect();
// What now?

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

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

发布评论

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

评论(1

樱花坊 2024-09-13 23:05:40
URL url = new URL(urlString);
URLConnection connection = url.openConnection();
connection.connect();
long time = connection.getLastModified();

Javadoc

返回最后修改的值
标头字段。结果是数字
自 1970 年 1 月 1 日以来的毫秒数
格林威治标准时间。

URL url = new URL(urlString);
URLConnection connection = url.openConnection();
connection.connect();
long time = connection.getLastModified();

Javadoc

Returns the value of the last-modified
header field. The result is the number
of milliseconds since January 1, 1970
GMT.

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