java.time.LocalDateTime from()方法

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

1 语法

public static LocalDateTime from(TemporalAccessor temporal)

2 参数

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

3 返回值

本地日期,不为null。

4 示例 

package com.yiidian;

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

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

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

输出结果为:

2017-03-17T14:34:35.445

 

热门文章

优秀文章