Skip to content

Instantly share code, notes, and snippets.

@ILapitan
Last active June 4, 2017 09:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ILapitan/532da89a31f228853330b7f8cfe00700 to your computer and use it in GitHub Desktop.
Save ILapitan/532da89a31f228853330b7f8cfe00700 to your computer and use it in GitHub Desktop.
Calculate the number of days between two dates in Java 1.8
// input dates
final String start = "2010-01-15";
final String end = "2011-03-18";
// parse the dates
final LocalDate startDate = LocalDate.parse( start );
final LocalDate endDate = LocalDate.parse( end );
// calculate the number of days between start and end dates
long daysDuration = ChronoUnit.DAYS.between( startDate , endDate );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment