Java 中的 DateFormat getTimeZone()方法,带示例

原文:https://www . geesforgeks . org/dateform-gettimezone-method-in-Java-with-examples/

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

语法:

public TimeZone getTimeZone()

参数:该方法不取任何参数。

返回值:该方法返回与日期格式的日历相关联的时区。

以下程序说明了日期格式类的 getTimeZone()方法的工作: 示例 1:

// Java code to illustrate
// getTimeZone() method

import java.text.*;
import java.util.*;

public class DateFormat_Demo {
    public static void main(String[] argv)
    {
        // Initializing the first formatter
        DateFormat DFormat
            = DateFormat.getDateInstance();

        // Converting the dateformat to string
        String str = DFormat.format(new Date());

        // Getting the available timezones
        System.out.println(DFormat
                               .getTimeZone()
                               .getDisplayName());
    }
}

Output:

Coordinated Universal Time

参考:https://docs . Oracle . com/javase/7/docs/API/Java/text/dateformat . html # getTimeZone()