如何解析这个日期格式

发布于 2024-12-11 04:06:25 字数 168 浏览 0 评论 0原文

大家好,我正在尝试解析这种格式,但无法解析。

格式:Fri Oct 21 2011 08:45:00 GMT 0530 (IST)

SimpleDateFormat("EEE MMM dd yyyy HH:mm:ss zzz ZZZZ")

有人可以解释一下这有什么问题吗?

Hi folks I am trying to parse this format but not able to it .

Format : Fri Oct 21 2011 08:45:00 GMT 0530 (IST)

SimpleDateFormat("EEE MMM dd yyyy HH:mm:ss zzz ZZZZ")

Can some one explain me what is wrong in this ?

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

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

发布评论

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

评论(1

独木成林 2024-12-18 04:06:25

您的 zzz 格式不正确; 文档表明它需要采用以下格式:GMT-05:30

另外,由于 Z 参数周围有括号,因此格式字符串中也需要括号。

sdf = new SimpleDateFormat("EEE MMM dd yyyy HH:mm:ss z (Z)")
println sdf.parse("Fri Oct 21 2011 08:45:00 GMT+05:30 (IST)")
> Fri Oct 21 02:45:00 EDT 2011

The format for your zzz is incorrect; the docs show that it needs to be in this format: GMT-05:30.

Also, since you have parentheses around the Z parameter, you need parentheses in your format string.

sdf = new SimpleDateFormat("EEE MMM dd yyyy HH:mm:ss z (Z)")
println sdf.parse("Fri Oct 21 2011 08:45:00 GMT+05:30 (IST)")
> Fri Oct 21 02:45:00 EDT 2011
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文