java.time.LocalDate.until() Method Example



Description

The java.time.LocalDate.until(ChronoLocalDate endDateExclusive) method calculates the period between this date and another date as a Period.

Declaration

Following is the declaration for java.time.LocalDate.until(ChronoLocalDate endDateExclusive) method.

public Period until(ChronoLocalDate endDateExclusive)

Parameters

endDateExclusive − the end date, exclusive, which may be in any chronology, not null.

Return Value

the period between this date and the end date, not null.

Example

The following example shows the usage of java.time.LocalDate.until(ChronoLocalDate endDateExclusive) method.

package com.tutorialspoint;

import java.time.LocalDate;

public class LocalDateDemo {
   public static void main(String[] args) {
	  LocalDate date = LocalDate.parse("2017-01-03");
      LocalDate date1 = LocalDate.now();
      System.out.println(date.until(date1).getDays());  
   }
}

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

9
Advertisements