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


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


DateFormat類中的setTimeZone()方法用於設置此DateFormat日曆的時區。

用法:

public void setTimeZone(TimeZone time_zone)

參數:方法采用一個參數time_zoneTimeZone類型的名稱,表示新的時區。


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

下麵的程序說明DateFormat類的setTimeZone()方法的用法:
示例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()); 
  
        // Original TimeZone 
        System.out.println( 
            "The original timezone is: "
            + DFormat.getTimeZone() 
                  .getDisplayName()); 
  
        TimeZone time_zone 
            = TimeZone.getTimeZone("GMT"); 
  
        // Modifying the time zone 
        DFormat.setTimeZone(time_zone); 
  
        // Getting the modified timezones 
        System.out.println( 
            "New TimeZone is: "
            + DFormat.getTimeZone() 
                  .getDisplayName()); 
    } 
}
輸出:
The original timezone is: Coordinated Universal Time
New TimeZone is: Greenwich Mean Time

示例2:

// 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()); 
  
        // Original TimeZone 
        System.out.println( 
            "The original timezone is: "
            + DFormat.getTimeZone() 
                  .getDisplayName()); 
  
        TimeZone time_zone 
            = TimeZone.getTimeZone("Pacific/Tahiti"); 
  
        // Modifying the time zone 
        DFormat.setTimeZone(time_zone); 
  
        // Getting the modified timezones 
        System.out.println( 
            "New TimeZone is: "
            + DFormat.getTimeZone() 
                  .getDisplayName()); 
    } 
}
輸出:
The original timezone is: Coordinated Universal Time
New TimeZone is: Tahiti Time

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



相關用法


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