devxlogo

Calculate the Difference Between Two LocalDates

Calculate the Difference Between Two LocalDates

Use LocalDate and ChronoUnit:

LocalDate date1 = LocalDate.of(2018, 8, 10); LocalDate date2 = LocalDate.of(2018, 8, 30);

As long as the method between of the ChronoUnit enumerator takes 2 Temporals as parameters so you can pass the LocalDate instances without a problem.

long days = ChronoUnit.DAYS.between(date1, date2); System.out.println(days);
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist