小编典典

使用Joda时间获取给定时区的当前时间

java

要求是简单地获取给定时区的当前时间( 包括正确的DST调整 )。

SO似乎在这方面徘徊了一些问题,但是我似乎找不到以节省时间的低摩擦方式得出的直接答案(在SO,Joda
doco或谷歌搜索中)。似乎在给定的输入(当前UTC时间和所需的TZ)下,我应该能够从Joda
Time库中链接几个方法来实现我想要的功能,但是在上述示例中似乎希望评估+处理偏移量/应用程序代码中的转换-
如果可能的话,我想避免这种情况,仅根据其可用的静态TZ规则集来尽力而为。

出于这个问题的目的,假设我将不使用任何其他第三方服务(基于网络或其他二进制文件),而仅使用JDK和JodaTime库提供的服务。

任何指针表示赞赏。

更新: 这实际上是代表我的失误。我已经根据请求经度 计算出了 UTC偏移量,而这显然可以使您仍然需要区域信息来获得正确的DST调整。

double aucklandLatitude = 174.730423;
int utcOffset = (int) Math.round((aucklandLatitude * DateTimeConstants.HOURS_PER_DAY) / 360);
System.out.println("Offset: " + utcOffset);

DateTimeZone calculatedDateTimeZone = DateTimeZone.forOffsetHours(utcOffset);
System.out.println("Calculated DTZ: " + calculatedDateTimeZone);
System.out.println("Calculated Date: " + new DateTime(calculatedDateTimeZone));
System.out.println();
DateTimeZone aucklandDateTimeZone = DateTimeZone.forID("Pacific/Auckland");
System.out.println("Auckland DTZ: " +  aucklandDateTimeZone);
System.out.println("Auckland Date: " + new DateTime(aucklandDateTimeZone));

版画

Offset: 12
Calculated DTZ: +12:00
Calculated Date: 2012-02-08T11:20:04.741+12:00

Auckland DTZ: Pacific/Auckland
Auckland Date: 2012-02-08T12:20:04.803+13:00

因此,在新西兰阳光明媚的奥克兰,我们的夏令时为+12,但+13。

我的错。尽管如此,感谢您的回答,让我明白了自己的错误。


阅读 389

收藏
2020-12-03

共1个答案

小编典典

您是否看过DateTime构造函数:

DateTime(DateTimeZone zone)

这将构造一个DateTime,表示指定时区中的当前时间。

2020-12-03