當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java DateFormat getTimeZone()用法及代碼示例


DateFormat類中的getTimeZone()方法用於返回此DateFormat日曆的當前時區。

用法:

public TimeZone getTimeZone()

參數:該方法不帶任何參數。


返回值:該方法返回與DateFormat日曆關聯的時區。

下麵的程序說明DateFormat類的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()); 
    } 
}
輸出:
Coordinated Universal Time

參考: https://docs.oracle.com/javase/7/docs/api/java/text/DateFormat.html#getTimeZone()



相關用法


注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 DateFormat getTimeZone() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。