java.time.LocalDate.toEpochDay() Method Example



Description

The java.time.LocalDate.toEpochDay() method converts this date to the Epoch Day.

Declaration

Following is the declaration for java.time.LocalDate.toEpochDay() method.

public long toEpochDay()

Return Value

the Epoch Day equivalent to this date.

Example

The following example shows the usage of java.time.LocalDate.toEpochDay() method.

package com.tutorialspoint;

import java.time.LocalDate;

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

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

17512
Advertisements