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


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


java.util.GregorianCalendar.setTimeZone()方法是Java中的内置方法,它根据传递的参数将当前时区修改为新时区。

用法:

public void setTimeZone(TimeZone tz)

参数:该方法采用TimeZone对象的一个​​参数tz,该参数指定新的时区值。


返回值:此方法不返回任何值。

例子:

Input : IST
Output : India Standard Time

Input : UTC
Output : Coordinated Universal Time

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

示例1:

// Java Program to  illustrate  
// GregorianCalendar.setTimeZone() 
// 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("" + cal.getTime()); 
        
      System.out.println("Current Time Zone : " +  
                    cal.getTimeZone().getDisplayName()); 
        
      // Convert to another time zone 
      cal.setTimeZone(TimeZone.getTimeZone("CST")); 
      System.out.println("New Time Zone : " +  
                    cal.getTimeZone().getDisplayName()); 
   } 
}
输出:
Wed Jul 25 11:11:14 UTC 2018
Current Time Zone : Coordinated Universal Time
New Time Zone : Central Standard Time

示例2:

// Java Program to  illustrate  
// GregorianCalendar.setTimeZone() 
// 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("" + cal.getTime()); 
        
      System.out.println("Current Time Zone : " +  
                    cal.getTimeZone().getDisplayName()); 
        
      // Convert to another time zone 
      cal.setTimeZone(TimeZone.getTimeZone("IST")); 
      System.out.println("New Time Zone : " +  
                    cal.getTimeZone().getDisplayName()); 
   } 
}
输出:
Wed Jul 25 11:11:21 UTC 2018
Current Time Zone : Coordinated Universal Time
New Time Zone : India Standard Time

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



相关用法


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