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);
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.























