Java中的 LocalDateTime from() 方法及示例
LocalDateTime 类的from()方法用于从作为参数传递的时间对象中获取 LocalDateTime 的实例。
句法:
public static LocalDateTime
from(TemporalAccessor temporal)
参数:此方法接受一个参数temporal ,该参数指定要转换为 LocalDateTime 实例的时间对象。它不应该为空。
返回:该函数返回LocalDateTime ,它是从时间对象转换的 LocalDateTime。
异常:如果程序无法将给定日期转换为 LocalDateTime,则会抛出DateTimeException 。
下面的程序说明了 LocalDateTime.from() 方法:
方案一:
// Program to illustrate the from() method
import java.util.*;
import java.time.*;
import java.time.temporal.ChronoField;
public class GfG {
public static void main(String[] args)
{
LocalDateTime date
= LocalDateTime
.from(ZonedDateTime.now());
System.out.println(date);
}
}
输出:
2018-11-30T07:53:17.939
参考: https: Java Java)