Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的一个项目中,我必须将 UTC DateTime 转换为用户特定的日期和时间。我正在使用 xml 来获取时间偏移和夏令时参数。
例如 offset="GMT+2" dst="true"
如果是这种情况,那么考虑到夏令时,我必须将 utc DateTime 转换为 GMT+2。
我阅读了许多博客文章和文章,但没有完全理解如何进行时间和日期转换。有人可以给我看一个使用 JODA DateTime 或 java 中类似内容的示例。
谢谢,
如果您有DateTime任何给定的实例,DateTimeZone您可以将其转换为另一个时区,只需dateTime.toDateTime(otherTimeZone).
DateTime
DateTimeZone
dateTime.toDateTime(otherTimeZone)