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


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


Calendar类中的getTimeZone()方法用于返回此Calendar的当前时区。

用法:

public TimeZone getTimeZone()

参数:该方法不包含任何参数。


返回值:该方法返回此Calendar对象的时区。

以下示例程序旨在说明Calendar类的getTimeZone()方法的用法:
示例1:

// Java code to illustrate 
// getTimeZone() method 
  
import java.util.*; 
  
public class Calendar_Demo { 
    public static void main(String args[]) 
    { 
        // Creating a calendar object 
        Calendar calndr = Calendar.getInstance(); 
  
        // Getting the time zone of calendar 
        TimeZone time_zone = calndr.getTimeZone(); 
  
        // Displaying the current time zone 
        System.out.println("The current Time zone is: "
                           + time_zone.getDisplayName()); 
    } 
}
输出:
The current Time zone is: Coordinated Universal Time

示例2:

// Java code to illustrate 
// getTimeZone() method 
  
import java.util.*; 
  
public class Calendar_Demo { 
    public static void main(String args[]) 
    { 
        // Creating a calendar object 
        Calendar calndr = Calendar.getInstance(); 
  
        // Getting the time zone of calendar 
        TimeZone time_zone = calndr.getTimeZone(); 
  
        // Displaying the current time zone 
        System.out.println("The current Time zone is: "
                           + time_zone.getDisplayName()); 
  
        // Changing the time zone 
        calndr.setTimeZone( 
            TimeZone.getTimeZone("GMT")); 
  
        System.out.println("New TimeZone: "
                           + calndr.getTimeZone() 
                                 .getDisplayName()); 
    } 
}
输出:
The current Time zone is: Coordinated Universal Time
New TimeZone: Greenwich Mean Time

参考: https://docs.oracle.com/javase/8/docs/api/java/util/Calendar.html#getTimeZone–



相关用法


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