当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java GregorianCalendar getTimeZone()用法及代码示例


java.util.GregorianCalendar.getTimeZone()方法是Java中的内置方法,可获取时区并返回与此日历关联的TimeZone对象。

用法:

public TimeZone getTimeZone()

参数:此方法不接受任何参数。


返回值:此方法返回一个TimeZone对象,该对象表示此日历的时区。

例子:

Input : Mon Jul 23 19:45:33 UTC 2018
Output : Coordinated Universal Time

Input : Wed Oct 23 20:02:52 UTC 2019
        cal.setTimeZone(TimeZone.getTimeZone("CST"));
Output : Central Standard Time

以下程序说明了Java中的java.util.GregorianCalendar.getTimeZone()函数:

示例1:

// Java Program to  illustrate  
// GregorianCalendar.getTimeZone() 
// function  
  
import java.io.*; 
import java.util.*; 
  
class GFG { 
     public static void main(String[] args) { 
      
      // Create a new calendar 
      GregorianCalendar cal = (GregorianCalendar)  
                        GregorianCalendar.getInstance(); 
  
      //Display the current date and time 
      System.out.println("Current Date and Time : "
                            + cal.getTime()); 
        
      /* Creating a Time Zone object and  
         storing this TimeZone */
      TimeZone t = cal.getTimeZone(); 
  
      // Display the time zone 
      System.out.println("Time Zone : " +  
                        t.getDisplayName()); 
   } 
}
输出:
Current Date and Time : Wed Jul 25 11:25:16 UTC 2018
Time Zone : Coordinated Universal Time

示例2:在此程序中,我们使用setTimeZone()更改当前时区,然后使用getTimeZone()方法获取新时区。

// Java Program to  illustrate  
// GregorianCalendar.getTimeZone() 
// function  
  
import java.io.*; 
import java.util.*; 
  
class GFG { 
     public static void main(String[] args) { 
      
      // Create a new calendar 
      GregorianCalendar cal = (GregorianCalendar)  
                        GregorianCalendar.getInstance(); 
  
      // Display the current date and time 
      System.out.println("Current Date and Time : "
                            + cal.getTime()); 
      // Changing the current time zone                      
      cal.setTimeZone(TimeZone.getTimeZone("CST")); 
      
      /* Creating a Time Zone object and  
         storing the TimeZone */
      TimeZone t = cal.getTimeZone(); 
        
      // Display the time zone 
      System.out.println("Time Zone : " +  
                        t.getDisplayName()); 
   } 
}
输出:
Current Date and Time : Wed Jul 25 11:25:22 UTC 2018
Time Zone : Central Standard Time

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



相关用法


注:本文由纯净天空筛选整理自RICHIK BHATTACHARJEE大神的英文原创作品 GregorianCalendar getTimeZone() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。