Java: Date before and after 1 year compare to current date
Java DateTime, Calendar: Exercise-17 with Solution
Write a Java program to get a date before and after 1 year and compare it to the current date.
Sample Solution:
Java Code:
import java.util.*;
public class Exercise17 {
public static void main(String[] args)
{
Calendar cal = Calendar.getInstance();
Date cdate = cal.getTime();
// get next year
cal.add(Calendar.YEAR, 1);
Date nyear = cal.getTime();
//get previous year
cal.add(Calendar.YEAR, -2);
Date pyear = cal.getTime();
System.out.println("\nCurrent Date : " + cdate);
System.out.println("\nDate before 1 year : " + pyear);
System.out.println("\nDate after 1 year : " + nyear+"\n");
}
}
Sample Output:
Current Date : Tue Jun 20 17:21:52 IST 2017 Date before 1 year : Mon Jun 20 17:21:52 IST 2016 Date after 1 year : Wed Jun 20 17:21:52 IST 2018
N.B.: The result may varry for your system date and time.
Pictorial Presentation:
Flowchart:

Java Code Editor:
Improve this sample solution and post your code through Disqus
Previous: Write a Java program to get a date after 2 weeks.
Next: Write a Java program to check a year is a leap year or not.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join