ChronoLocalDateTime from() method in Java with Examples

Last Updated : 29 May, 2019
The from() method of ChronoLocalDateTime interface is used to obtain an instance of ChronoLocalDateTime from the temporal object passed as the parameter. Syntax:
static ChronoLocalDateTime<T> 
        from(TemporalAccessor temporal)
Parameter: This method accepts a parameter temporal which specifies the TemporalAccessor object to be converted to the ChronoLocalDateTime instance. It should not be null. Returns: The function returns the ChronoLocalDateTime which is the converted ChronoLocalDateTime from the temporal object. Exceptions: The program throws DateTimeException which is thrown if it is unable to convert the given date to a ChronoLocalDateTime. Below programs illustrate the ChronoLocalDateTime.from() method: Program 1: Java
// Program to illustrate the from() method

import java.util.*;
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.ChronoField;

public class GfG {
    public static void main(String[] args)
    {
        ChronoLocalDateTime date
            = LocalDateTime
                  .from(ZonedDateTime.now());

        System.out.println(date);
    }
}
Output:
2019-05-29T11:53:52.135
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDateTime.html#from-java.time.temporal.TemporalAccessor-
Comment