java.time.ZonedDateTime of()方法

java.time.ZonedDateTime.of(LocalDateTime date,ZoneId zone)方法从日期时间和时区获取ZonedDateTime的实例。

1 语法

public static ZonedDateTime of(LocalDateTime date, ZoneId zone)

2 参数

date:本地日期时间,不为null

zone:时区,不为null

3 返回值

分区日期时间,不为null。

4 示例 

package com.yiidian;

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

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

      ZonedDateTime date = ZonedDateTime.of(LocalDateTime.now(), ZoneId.systemDefault());
      System.out.println(date);  
   }
}

输出结果为:

2017-03-28T13:57:45.878+05:30[Asia/Calcutta]

 

热门文章

优秀文章