當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java TimeZone getTimeZone()用法及代碼示例


Java中的TimeZone類的getTimeZone()方法用於了解任何傳遞的TimeZone ID的實際TimeZone。

用法:

public static TimeZone getTimeZone(String the_ID)

參數:該方法采用字符串數據類型的一個參數the_ID,該參數表示需要知道其時區的ID。


返回值:如果程序無法理解指定的ID,則該方法將為傳遞的ID返回指定的TimeZone或GMT區域。

下麵的程序演示了TimeZone的getTimeZone()方法的用法:
示例1:

// Java code to illustrate getTimeZone() method 
  
import java.util.*; 
  
public class TimeZoneDemo { 
    public static void main(String args[]) 
    { 
  
        // Creating a TimeZone 
        TimeZone the_time_zone 
            = TimeZone.getDefault(); 
  
        // Knowing the TimeZone 
        System.out.println("The TimeZone is: "
                           + the_time_zone 
                                 .getTimeZone("GMT+5:30")); 
    } 
}
輸出:
The TimeZone is: sun.util.calendar.ZoneInfo[id="GMT+05:30",
offset=19800000, dstSavings=0, useDaylight=false, transitions=0, lastRule=null]

示例2:

// Java code to illustrate getTimeZone() method 
  
import java.util.*; 
  
public class TimeZoneDemo { 
    public static void main(String args[]) 
    { 
  
        // Creating a TimeZone 
        TimeZone the_time_zone 
            = TimeZone.getDefault(); 
  
        // Knowing the TimeZone 
        System.out.println("The TimeZone is: "
                           + the_time_zone 
                                 .getTimeZone("GMT-3:30")); 
    } 
}
輸出:
The TimeZone is: sun.util.calendar.ZoneInfo[id="GMT-03:30",
offset=-12600000, dstSavings=0, useDaylight=false, transitions=0, lastRule=null]

參考:https://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html#getTimeZone()



相關用法


注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 TimeZone getTimeZone() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。