gpt4 book ai didi

android - jodatime如何知道夏令时是否开启

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:01:28 27 4
gpt4 key购买 nike

我有一个需要时区的 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,但即使在那里我也找不到方法。请建议 native 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);

更新

我仍然不确定你到底在问什么,但也许你正在寻找以下之一:

// 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;

关于android - jodatime如何知道夏令时是否开启,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16494174/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com