如何解析这个日期格式
大家好,我正在尝试解析这种格式,但无法解析。
格式: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的
zzz
格式不正确; 文档表明它需要采用以下格式:GMT-05:30
。另外,由于
Z
参数周围有括号,因此格式字符串中也需要括号。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.