我有一个需要时区的API.例如如果我在加利福尼亚州,当夏令时(加利福尼亚,PDT是GMT-7),而在夏令时关闭时,我需要通过-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,或者有办法这样做.
解决方法
当您使用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);
UPDATE
我仍然不确定你在问什么,但也许你正在寻找其中之一:
// 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;