对于某些时区,通过 JodaTime 和 java.time 设置时区后的更正时间给出了不同的结果,为什么?
For Some Timezones, Corrected Time after setting TimeZone via JodaTime and java.time are giving different results, Why?
以下是 java 中的一小段代码,试图将以毫秒为单位的时间转换为可读的日期时间格式,
Long timeInMillis=1615806808301l; //2021-03-15T16:43:28.301+05:30 IST
String timeZone="Europe/Istanbul";
MutableDateTime mdateTime = new MutableDateTime(timeInMills);
mdateTime.setZone(DateTimeZone.forTimeZone(TimeZone.getTimeZone(timeZone)));
ZonedDateTime zdt = ZonedDateTime.ofInstant(Instant.ofEpochMilli(timeInMills), ZoneId.of(timeZone));
以下是 Joda[mdateTime] 和 Java.time[zdt] 给出的相同时间和时区的结果,
Europe/Istanbul
2021-03-15T13:13:28.301+02:00[Europe/Istanbul]
2021-03-15T14:13:28.301+03:00[Europe/Istanbul]
Turkey
2021-03-15T13:13:28.301+02:00
2021-03-15T14:13:28.301+03:00[Turkey]
Europe/Moscow
2021-03-15T15:13:28.301+04:00
2021-03-15T14:13:28.301+03:00[Europe/Moscow]
Europe/Minsk
2021-03-15T14:13:28.301+03:00
2021-03-15T14:13:28.301+03:00[Europe/Minsk]
如您所见,对于某些时区,结果不同,
PS:我的实际意图不是将timeInmillis转换为可读的日期时间格式,而是理解为什么结果不同。
PS:系统时区是 IST[+05:30]
根据您为 Joda-Time 显示的结果,您可能使用的是非常旧的版本。
时区随政府的心血来潮而变化。始终使用最新版本并随时了解更新非常重要。
升级到当前版本的 Joda-Time(撰写本文时为 2.10.10),您报告的差异应该会消失。
以下是 java 中的一小段代码,试图将以毫秒为单位的时间转换为可读的日期时间格式,
Long timeInMillis=1615806808301l; //2021-03-15T16:43:28.301+05:30 IST
String timeZone="Europe/Istanbul";
MutableDateTime mdateTime = new MutableDateTime(timeInMills);
mdateTime.setZone(DateTimeZone.forTimeZone(TimeZone.getTimeZone(timeZone)));
ZonedDateTime zdt = ZonedDateTime.ofInstant(Instant.ofEpochMilli(timeInMills), ZoneId.of(timeZone));
以下是 Joda[mdateTime] 和 Java.time[zdt] 给出的相同时间和时区的结果,
Europe/Istanbul
2021-03-15T13:13:28.301+02:00[Europe/Istanbul]
2021-03-15T14:13:28.301+03:00[Europe/Istanbul]
Turkey
2021-03-15T13:13:28.301+02:00
2021-03-15T14:13:28.301+03:00[Turkey]
Europe/Moscow
2021-03-15T15:13:28.301+04:00
2021-03-15T14:13:28.301+03:00[Europe/Moscow]
Europe/Minsk
2021-03-15T14:13:28.301+03:00
2021-03-15T14:13:28.301+03:00[Europe/Minsk]
如您所见,对于某些时区,结果不同,
PS:我的实际意图不是将timeInmillis转换为可读的日期时间格式,而是理解为什么结果不同。
PS:系统时区是 IST[+05:30]
根据您为 Joda-Time 显示的结果,您可能使用的是非常旧的版本。
时区随政府的心血来潮而变化。始终使用最新版本并随时了解更新非常重要。
升级到当前版本的 Joda-Time(撰写本文时为 2.10.10),您报告的差异应该会消失。