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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。