11

我有一个需要时区的 API。例如。如果我在加利福尼亚州,我需要在夏令时开启时将 -7 传递给它(加利福尼亚州,PDT 是 GMT - 7),在夏令时关闭时将 -8 传递给它。但我无法弄清楚在当前日期是开启还是关闭夏令时。

Date date1 = new Date();
Calendar cal = Calendar.getInstance();
cal.setTime(date1);
double[] coords = db.getCoords(id1);
double latitude = coords[0];
double longitude = coords[1];
double timezone = -7; /* For Pacific daylight time (GMT - 7)*/

ArrayList<String> Times = Class.foo(cal, latitude,
longitude, timezone);

我已经安装了 JodaTime,即使在那里我也找不到方法。请建议本地 java 或 jodatime 是否有办法做到这一点。

4

1 回答 1

16

当您DateTime使用 JodaTime 创建时,您不需要传递偏移量。相反,通过时区。它将负责确定正确的偏移量,包括考虑 DST。

// First get a DateTimeZone using the zone name
DateTimeZone zone = DateTimeZone.forID("America/Los_Angeles");

// Then get the current time in that zone.
DateTime dt = new DateTime(zone);

// Or if you prefer to be more explicit, this syntax is equivalent.
DateTime dt = DateTime.now(zone);

更新

我仍然不确定你在问什么,但也许你正在寻找其中之一:

// To get the current Pacific Time offset
DateTimeZone zone = DateTimeZone.forID("America/Los_Angeles");
int currentOffsetMilliseconds = zone.getOffset(Instant.now());
int currentOffsetHours = currentOffsetMilliseconds / (60 * 60 * 1000);


// To just determine if it is currently DST in Pacific Time or not.
DateTimeZone zone = DateTimeZone.forID("America/Los_Angeles");
boolean isStandardOffset = zone.isStandardOffset(Instant.now());
boolean isDaylightOffset = !isStandardOffset;
于 2013-05-11T15:16:09.310 回答