Java TimeZone getID() 方法



描述

Java TimeZone getID() 方法用于获取此时区的 ID。

声明

以下是 java.util.TimeZone.getID() 方法的声明。

public String getID()

参数

返回值

方法调用返回此时区的 ID。

异常

获取欧洲地区时区的 ID 示例

以下示例演示了如何使用 Java TimeZone getID() 方法获取此对象的时区 ID。我们使用 Europe/Paris 创建了一个 TimeZone,然后打印了 ID。

package com.tutorialspoint;

import java.util.TimeZone;

public class TimeZoneDemo {
   public static void main( String args[] ) {

      // create time zone object     
      TimeZone timezone = TimeZone.getTimeZone("Europe/Paris");

      // checking ID of this time zone         
      System.out.println("ID value is :" + timezone.getID());
   }    
}

输出

让我们编译并运行上述程序,这将产生以下结果。

ID value is :Europe/Paris

获取波兰地区时区的 ID 示例

以下示例演示了如何使用 Java TimeZone getID() 方法获取此对象的时区 ID。我们使用波兰创建了一个 TimeZone,然后打印了 ID。

package com.tutorialspoint;

import java.util.TimeZone;

public class TimeZoneDemo {
   public static void main( String args[] ) {

      // create time zone object     
      TimeZone timezone = TimeZone.getTimeZone("Poland");

      // checking ID of this time zone         
      System.out.println("ID value is :" + timezone.getID());
   }    
}

输出

让我们编译并运行上述程序,这将产生以下结果。

ID value is :Poland

获取印度地区时区的 ID 示例

以下示例演示了如何使用 Java TimeZone getID() 方法获取此对象的时区 ID。我们使用印度创建了一个 TimeZone,然后打印了 ID。

package com.tutorialspoint;

import java.util.TimeZone;

public class TimeZoneDemo {
   public static void main( String args[] ) {

      // create time zone object     
      TimeZone timezone = TimeZone.getTimeZone("India");

      // checking ID of this time zone         
      System.out.println("ID value is :" + timezone.getID());
   }    
}

输出

让我们编译并运行上述程序,这将产生以下结果。

ID value is :GMT
java_util_timezone.htm
广告