w3resource

Java: Get year and months between two dates

Java DateTime, Calendar: Exercise-19 with Solution

Write a Java program to get the year and month between two dates.

Sample Solution:

Java Code:

import java.time.*;
public class Exercise19 {
   public static void main(String[] args)
    {
     LocalDate today = LocalDate.now();    
     LocalDate userday = LocalDate.of(2015, Month.MAY, 15); 
     Period diff = Period.between(userday, today); 
     System.out.println("\nDifference between "+ userday +" and "+ today +": " 
     + diff.getYears() +" Year(s) and "+ diff.getMonths() +" Month()s\n");
    }
}

Sample Output:

Difference between 2015-05-15 and 2017-06-20: 2 Year(s) and 1 Month()s

N.B.: The result may varry for your system date and time.

Pictorial Presentation:

Java Exercises: Java DateTime, Calendar Exercises - Get year and months between two dates.

Flowchart:

Flowchart: Java DateTime, Calendar Exercises - Get year and months between two dates

What is the difficulty level of this exercise?

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to check a year is a leap year or not.
Next: Write a Java program to get current timestamp.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/datetime/java-datetime-exercise-19.php