在java中将不同的RSS pubDate解析为Date对象

发布于 11-30 11:01 字数 277 浏览 0 评论 0原文

我了解如何根据此链接设置日期格式 解析示例

但我的问题有点复杂我有不同的pubDate rss 元素,例如

Sun, 21 Aug 2011 20:19:47 +0200 或

Sun, 21 Aug 2011 10:01

为任何 pubDate 元素设置一种格式的最佳原因是什么

i understood how to format the date according to this link
parse exemple

but my problem is a bit complex i have different pubDate rss elements for example

Sun, 21 Aug 2011 20:19:47 +0200
or

Sun, 21 Aug 2011 10:01

what is the best why to set one format for any pubDate element

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

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

发布评论

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

评论(1

绅士风度i2024-12-07 11:01:23

RSS pubDate 必须符合 RFC 822 日期/时间规范 。您可以使用 中相同的 DateFormat 对象解析链接以从java Date中获取正确的字符串。

DateFormat formatter = new SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss z");
String pubDateText = formatter.format(pubDate);

其中 pubDate 是先前定义的 Date 对象。这将始终返回相同的格式。

RSS pubDate must conform to the RFC 822 Date/Time specification. You can use the same DateFormat object from your parsing link to get the proper string from a java Date.

DateFormat formatter = new SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss z");
String pubDateText = formatter.format(pubDate);

Where pubDate is a previously defined Date object. This will always return the same format.

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