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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。