我有一个需要时区的API。例如。如果我在加利福尼亚州,我需要在夏令时(加利福尼亚州,PDT是格林尼治标准时间 - 7)和-8时,在夏令时关闭时将-7传递给它。但我无法弄清楚是否在当前日期,夏令时开启或关闭。
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,要么有办法这样做。
答案 0 :(得分:14)
使用JodaTime创建DateTime
时,无需传递偏移量。相反,传递时区。它将负责确定正确的偏移量,包括考虑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 isDaylightOfset = !isStandardOffset;