获取Java中时区的夏令时转换日期

时间:2009-09-19 20:55:23

标签: java date dst

我想知道在Java中最简单的方法是获取将来夏令时会发生变化的日期列表。

这样做的一个相当不公平的方法是简单地迭代一堆多年的日子,对TimeZone.inDaylightTime()进行测试。这会有效,而且我并不担心效率,因为每次我的应用程序启动时都只需运行,但我想知道是否有更简单的方法。

如果你想知道为什么我这样做,那是因为我有一个需要处理包含UTC时间戳的第三方数据的javascript应用程序。我想要一种可靠的方法在客户端从GMT转换到EST。请参阅Javascript -- Unix Time to Specific Time Zone我已经编写了一些javascript来执行此操作,但我希望从服务器获得精确的转换日期。

2 个答案:

答案 0 :(得分:31)

Joda Time(一如既往)由于采用DateTimeZone.nextTransition方法,因此非常简单。例如:

import org.joda.time.*;
import org.joda.time.format.*;

public class Test
{    
    public static void main(String[] args)
    {
        DateTimeZone zone = DateTimeZone.forID("Europe/London");        
        DateTimeFormatter format = DateTimeFormat.mediumDateTime();

        long current = System.currentTimeMillis();
        for (int i=0; i < 100; i++)
        {
            long next = zone.nextTransition(current);
            if (current == next)
            {
                break;
            }
            System.out.println (format.print(next) + " Into DST? " 
                                + !zone.isStandardOffset(next));
            current = next;
        }
    }
}

输出:

25-Oct-2009 01:00:00 Into DST? false
28-Mar-2010 02:00:00 Into DST? true
31-Oct-2010 01:00:00 Into DST? false
27-Mar-2011 02:00:00 Into DST? true
30-Oct-2011 01:00:00 Into DST? false
25-Mar-2012 02:00:00 Into DST? true
28-Oct-2012 01:00:00 Into DST? false
31-Mar-2013 02:00:00 Into DST? true
27-Oct-2013 01:00:00 Into DST? false
30-Mar-2014 02:00:00 Into DST? true
26-Oct-2014 01:00:00 Into DST? false
29-Mar-2015 02:00:00 Into DST? true
25-Oct-2015 01:00:00 Into DST? false
...

使用Java 8,您可以使用ZoneRulesnextTransitionpreviousTransition方法获取相同的信息。

答案 1 :(得分:0)

java.time

现代答案使用现代Java日期和时间API java.time。

optional

输出,缩写:

unwrap

不过,我不会对数据过于信任。我不确定英国退欧后(以及欧盟可能在2021年放弃夏令时)之后英国的时间会发生什么。

链接: Oracle tutorial: Date Time解释了如何使用java.time。