2009-09-19 83 views
15

我想知道在Java中使用最簡單的方法來獲取夏時制時間將改變的日期列表。在Java中獲取夏時制轉換日期時間區域

一個相當不禮貌的方法就是迭代一堆數年的時間,並對TimeZone.inDaylightTime()進行測試。這會起作用,我並不擔心效率,因爲這隻需要在每次啓動應用程序時運行,但我不知道是否有更簡單的方法。

如果你想知道爲什麼我這樣做,這是因爲我有一個JavaScript應用程序需要處理包含UTC時間戳的第三方數據。我想要一種可靠的方式在客戶端從GMT轉換爲EST。請參閱Javascript -- Unix Time to Specific Time Zone我已經寫了一些JavaScript來完成它,但我想從服務器獲取精確的轉換日期。

+2

看到這個問題:http://stackoverflow.com/questions/581581/find-dst-transition-timestamp-with-java-util-timezone – 2009-09-19 21:04:04

回答

28

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方法相同的信息。

+0

+1爲'樣本來'的想法(以及其餘當然是) – akf 2009-09-19 21:04:25

+0

當然,預測未來還有很多猜測。 最近美國已經修補了DST日期,可能再次。 – brianary 2009-09-24 18:13:17

+0

今年第一個DST過渡日期是2010年3月14日(幾天前發生)。但您的腳本指定2010年3月28日。我錯過了什麼嗎? – 2010-03-16 14:34:06