📌  相关文章
📜  Java中的 TimeZone getID() 方法及示例

📅  最后修改于: 2022-05-13 01:55:14.383000             🧑  作者: Mango

Java中的 TimeZone getID() 方法及示例

Java中TimeZone 类getID()方法用于获取特定 TimeZone 的官方 ID。

句法:

public String getID()

参数:该方法不带任何参数。

返回值:该方法返回TimeZone 的 ID

下面的程序说明了 TimeZone 的 getID() 方法的工作:
示例 1:

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

示例 2:

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

参考: https: Java/util/TimeZone.html#getID()