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

时间:2012-02-07 21:47:31

标签: java timezone jodatime

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

似乎有几个问题在这里徘徊,但我似乎无法找到一个直接的答案(在SO,Joda doco或谷歌搜索)与低摩擦的方式来获得墙上的时间。看起来像给定的输入(当前UTC时间和期望的TZ)我应该能够从Joda Time库链接一些方法来实现我想要的但是在所述示例中似乎希望评估+处理偏移/应用程序代码中的转换 - 我希望尽可能避免这种情况,并根据其可用的静态TZ规则集使用Jodas尽力而为。

出于这个问题的目的,我们假设我不会使用任何其他第三方服务(基于网络或其他二进制文件),只有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

所以在阳光明媚的Auckland, NZ,我们在DST期间是+12但是+13。

我的坏。谢谢你的答案,让我看到了我的错误。

3 个答案:

答案 0 :(得分:18)

您是否看过DateTime构造函数:

DateTime(DateTimeZone zone) 

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

答案 1 :(得分:14)

怎么样:

DateTime utc = new DateTime(DateTimeZone.UTC);
DateTimeZone tz = DateTimeZone.forID("America/Los_Angeles");
DateTime losAngelesDateTime = utc.toDateTime(tz);

答案 2 :(得分:10)

最干净的方法

我发现以下是最干净的方法。

DateTime currentTime = DateTime.now( DateTimeZone.UTC );

这会以 UTC 获取当前时间,但此值可以转换为其他DateTimeZone,或者您可以将DateTimeZone.UTC替换为其他DateTimeZone。< / p>

使用系统TimeZone

如果要将其设置为系统时区,可以使用:

DateTime currentTime = DateTime.now( DateTimeZone.getDefault() );