java.time.ZonedDateTime from()方法

java.time.ZonedDateTime.from(TemporalAccessor temporal)方法从时态对象获取ZonedDateTime的实例。

1 语法

public static ZonedDateTime from(TemporalAccessor temporal)

2 参数

temporal:要转换的时间对象,而不是null。

3 返回值

本地日期,不为null。

4 示例 

package com.yiidian;

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

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

      ZonedDateTime date = ZonedDateTime.from(ZonedDateTime.now());
      System.out.println(date);  
   }
}

输出结果为:

2017-03-28T12:25:38.492+05:30[Asia/Calcutta]

 

热门文章

优秀文章