java.time.LocalDateTime.from() Method Example



Description

The java.time.LocalDateTime.from(TemporalAccessor temporal) method obtains an instance of LocalDateTime from a temporal object.

Declaration

Following is the declaration for java.time.LocalDateTime.from(TemporalAccessor temporal) method.

public static LocalDateTime from(TemporalAccessor temporal)

Parameters

temporal − the temporal object to convert, not null.

Return Value

the local date, not null.

Exceptions

DateTimeException − if unable to convert to a LocalDateTime.

Example

The following example shows the usage of java.time.LocalDateTime.from(TemporalAccessor temporal) method.

package com.tutorialspoint;

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);  
   }
}

Let us compile and run the above program, this will produce the following result −

2017-03-17T14:34:35.445
Advertisements