如何将 YYYY-MM-DDTHH:mm:ss.SSSZ 格式的时间转换为默认时区?
我得到的时间格式为“2011-07-31T08:16:37.733Z”。实际上Z应该是时区,然后将该时间转换为本地时区。我现在如何实际将此时间转换为默认时区。
The time that I am getting is in the format "2011-07-31T08:16:37.733Z". Actually the Z should be the timezone and then that time is converted to local timezone. How do I actually convert this time to default timezone now.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
RFC 3339 描述了日期/时间表示的特定 ISO 8601“配置文件”。
如果可以选择使用第 3 方开源库,请查看 Joda-Time 的
ISODateTimeFormat
实用程序类。否则,如果您需要推出自己的代码,由于 ISO 8601/RFC 3339 表示时区信息的方式,仅使用
SimpleDateFormat
是不够的。如果您需要解析的所有内容都在“Z”(Zulu 或 UTC)中,那么它相对简单:
应该在您当地的时区打印出“2011-08-11T01:23:45.678Z”。
如果您需要处理 RFC 3339 中的任意时区,那么您需要扩展上述内容来解析时区指示符并检索相应的 Java
TimeZone
实例。如果只是整个小时 +/- GMT,那么这应该不会太难,但如果是非标准偏移,您可能必须创建自己的SimpleTimeZone
实例。RFC 3339 describes a specific ISO 8601 'profile' for date/time representation.
If using 3rd-party open-source libraries is an option, take a look at Joda-Time's
ISODateTimeFormat
utility class.Otherwise, if you need to roll out your own code it's not enough to use a
SimpleDateFormat
because of the way ISO 8601/RFC 3339 represents timezone information.If all you need to parse is in 'Z' (Zulu or UTC), then it's relatively simple:
Should print out "2011-08-11T01:23:45.678Z" in your local time zone.
If you need to handle arbitrary timezones in RFC 3339 then you'll need to extend the above to parse out the timezone designator and retrieve the corresponding Java
TimeZone
instance. That shouldn't be too hard if it's just whole hours +/- GMT, but in case of non-standard offsets you may have to create your ownSimpleTimeZone
instance.