Java 日历 getTimeZone()方法及示例

Java 日历 getTimeZone()方法及示例

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

语法

public TimeZone getTimeZone()

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

返回值: 该方法返回该日历对象的时区。

下面的程序说明了日历类的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-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Java 日历