This example shows how to find the number of seconds between two dates using Java 8 date time api and Joda time. We will set the start date by subtracting 1 day from the current date and the end date to today. Then we will find the number of seconds between the start date and end date which equates to 86400 seconds.
Java 8 Date and Time API
This snippet will find the difference between two dates in seconds using java 8 Duration.between and ChronoUnit.SECONDS.between. Both approaches will calculate the amount of time between two temporal objects in the form of seconds.
Joda Time
Using joda, this snippet will calculate number of seconds between two dates using Seconds.secondsBetween.