通过 DateTimeFormatter.forPattern 解析字符串
我有一个字符串:
Sun May 15 00:00:00 IST 2011
现在,如果我想通过以下模式将其解析为 joda DateTime:
EEE MMM dd 00:00:00 z yyyy
我得到:
java.lang.IllegalArgumentException: Invalid format: "Sun May 15 00:00:00 IST 2011" is malformed at " 00:00:00 IST 2011"
但是具有相同模式的 SimpleDateFormat 可以将该字符串解析为 java.util.Date。我做错了什么?
谢谢和问候。
I have a String:
Sun May 15 00:00:00 IST 2011
Now if I want to parse it into joda DateTime by the pattern:
EEE MMM dd 00:00:00 z yyyy
I am getting:
java.lang.IllegalArgumentException: Invalid format: "Sun May 15 00:00:00 IST 2011" is malformed at " 00:00:00 IST 2011"
But the SimpleDateFormat with the same pattern can parse that String to java.util.Date. What I am doing wrong?
Thanks and Regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JODA 不支持解析时区名称。
来自 API 文档:
区域名称:无法解析时区名称('z')。
JODA does not support parsing of time zone names.
From the API documentation:
Zone names: Time zone names ('z') cannot be parsed.