java.time.LocalDate.ofEpochDay() Method Example



Description

The java.time.LocalDate.ofEpochDay(long epochDay) method obtains an instance of LocalDate from the epoch day count.

Declaration

Following is the declaration for java.time.LocalDate.ofEpochDay(long epochDay) method.

public static LocalDate ofEpochDay(long epochDay)

Parameters

epochDay − the Epoch Day to convert, based on the epoch 1970-01-01.

Return Value

the local date, not null.

Exceptions

DateTimeException − if the epoch day exceeds the supported date range.

Example

The following example shows the usage of java.time.LocalDate.ofEpochDay(long epochDay) method.

package com.tutorialspoint;

import java.time.LocalDate;

public class LocalDateDemo {
   public static void main(String[] args) {
	  
      LocalDate date = LocalDate.ofEpochDay(100);
      System.out.println(date);  
   }
}

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

1970-04-11
Advertisements