Java Calculate Number of Days Between two ZonedDateTime

Tags: Java ZonedDateTime ChronoUnit Java 8

In this Java core tutorial, we learn how to calculate the number of days between two ZonedDateTime objects using the java.time.temporal.ChronoUnit class in Java programming language.

How to get number of days between two ZonedDateTime in Java

In Java, to calculate the number of days between given start and end ZonedDateTime value we can use the ChronoUnit.DAYS.between() method as the following example Java code.

DaysBetweenZonedDateTimeExample.java

import java.time.ZonedDateTime;
import java.time.temporal.ChronoUnit;

public class DaysBetweenZonedDateTimeExample {
    public static void main(String... args) {
        ZonedDateTime startZonedDateTime = ZonedDateTime.parse("2022-01-01T08:15:30+10:00[Australia/Sydney]");
        ZonedDateTime endZonedDateTime = ZonedDateTime.parse("2022-02-01T08:15:30+10:00[Australia/Sydney]");

        // Calculate Number of Days Between two ZonedDateTime
        long numberOfDays = ChronoUnit.DAYS.between(startZonedDateTime, endZonedDateTime);

        System.out.println(String.format("Number of days between %s and %s is %d",
                startZonedDateTime,
                endZonedDateTime,
                numberOfDays));

    }
}
The output as below.
Number of days between 2022-01-01T09:15:30+11:00[Australia/Sydney] and 2022-02-01T09:15:30+11:00[Australia/Sydney] is 31

Happy Coding 😊

Java Calculate Number of Decades Between two ZonedDateTime

Java Calculate Number of Years Between two ZonedDateTime

Java Calculate Number of Months Between two ZonedDateTime

Java Calculate Number of Weeks Between two ZonedDateTime

Java Calculate Number of Hours Between two ZonedDateTime

Java Calculate Number of Minutes Between two ZonedDateTime

Java Calculate Number of Seconds Between two ZonedDateTime

Java Calculate Number of Milliseconds Between two ZonedDateTime

Java Calculate Number of Nanoseconds Between two ZonedDateTime