Open In App

ChronoLocalDateTime from() method in Java with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

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:




// 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-


Last Updated : 29 May, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads