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


Java TimeZone setID()用法及代码示例


Java中的TimeZone类的setID(String ID)方法用于设置此TimeZone的时区ID。在此操作期间,时区对象的其他数据没有更改。

用法:

public void setID(String ID)

参数:该方法采用一个String类型的参数ID,该参数ID引用TimeZone的新ID。


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

下面的程序说明TimeZone类的setID()方法的使用:
示例1:

// Java code to illustrate setID() method 
  
import java.util.*; 
  
public class TimeZoneDemo { 
    public static void main(String args[]) 
    { 
  
        // Creating a TimeZone 
        TimeZone offtime_zone 
            = TimeZone.getTimeZone( 
                "Pacific/Pago_Pago"); 
  
        // set time zone ID 
        offtime_zone.setID("GMT+05:00"); 
  
        // Knowing the DST 
        System.out.println("The ID is: "
                           + offtime_zone.getID()); 
    } 
}
输出:
The ID is: GMT+05:00

示例2:

// Java code to illustrate setID() method 
  
import java.util.*; 
  
public class TimeZoneDemo { 
    public static void main(String args[]) 
    { 
  
        // Creating a TimeZone 
        TimeZone offtime_zone 
            = TimeZone.getDefault(); 
  
        // set time zone ID 
        offtime_zone.setID("GMT+05:30"); 
  
        // Knowing the DST 
        System.out.println("The ID is: "
                           + offtime_zone.getID()); 
    } 
}
输出:
The ID is: GMT+05:30

参考:https://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html#setID(java.lang.String)



相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 TimeZone setID() Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。