java.time.LocalDateTime.ofInstant() Method Example



Description

The java.time.LocalDateTime.ofInstant(Instant instant, ZoneId zone) method obtains an instance of LocalDateTime from an Instant and zone ID.

Declaration

Following is the declaration for java.time.LocalDateTime.ofInstant(Instant instant, ZoneId zone) method.

public static LocalDateTime ofInstant(Instant instant, ZoneId zone)

Parameters

  • instant − the instant to create the date-time from, not null.

  • zone − the time-zone, which may be an offset, not null.

Return Value

the local date, not null.

Exceptions

DateTimeException − if the result exceeds the supported range.

Example

The following example shows the usage of java.time.LocalDateTime.ofInstant(Instant instant, ZoneId zone) method.

package com.tutorialspoint;

import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;

public class LocalDateTimeDemo {
   public static void main(String[] args) {
 
      LocalDateTime date = LocalDateTime.ofInstant(Instant.now(), ZoneId.systemDefault());
      System.out.println(date);  
   }
}

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

2017-03-17T15:50:22.770
Advertisements