java.time.ZonedDateTime getZone()方法

java.time.ZonedDateTime.getZone()方法获取时区,例如:"Europe/Paris"。

1 语法

public ZoneId getZone()

2 参数

3 返回值

时区,不是null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.ZonedDateTime getZone()方法
 */
import java.time.ZonedDateTime;

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

      ZonedDateTime date = ZonedDateTime.parse("2017-03-28T12:25:38.492+05:30[Asia/Calcutta]");
      System.out.println(date.getZone());  
   }
}

输出结果为:

Asia/Calcutta

 

热门文章

优秀文章