在java中将不同的RSS pubDate解析为Date对象
我了解如何根据此链接设置日期格式 解析示例
但我的问题有点复杂我有不同的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
RSS pubDate 必须符合 RFC 822 日期/时间规范 。您可以使用 中相同的
DateFormat
对象解析链接以从javaDate
中获取正确的字符串。其中 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 javaDate
.Where pubDate is a previously defined Date object. This will always return the same format.