Java TimeZone getID()方法及示例
Java中 TimeZone类 的 getID() 方法是用来获取一个特定TimeZone的官方ID。
语法
public String getID()
参数: 该方法不接受任何参数。
返回值: 该方法返回 时区的ID
下面的程序说明了时区的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://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html#getID()