Java: Get a date after 2 weeks
16. Date After Two Weeks
Write a Java program to get a date after 2 weeks.
Sample Solution:
Java Code:
import java.util.*;
public class Exercise16 {
public static void main(String[] args)
{
//two weeks
int noOfDays = 14;
Calendar cal = Calendar.getInstance();
Date cdate = cal.getTime();
cal.add(Calendar.DAY_OF_YEAR, noOfDays);
Date date = cal.getTime();
System.out.println("\nCurrent Date: " + cdate+"\n");
System.out.println("Day after two weeks: " + date+"\n");
}
}
Sample Output:
Current Date: Tue Jun 20 17:12:49 IST 2017 Day after two weeks: Tue Jul 04 17:12:49 IST 2017
N.B.: The result may varry for your system date and time.
Pictorial Presentation:
Flowchart:
For more Practice: Solve these Related Problems:
- Write a Java program to compute the date exactly two weeks from today using Calendar.
- Write a Java program to display the day of the week for the date that occurs 14 days after today.
- Write a Java program to add 2 weeks to the current date and output the result in a custom format.
- Write a Java program to calculate the date two weeks ahead and verify the difference from today.
Go to:
PREV : Add Hours to Current Time.
NEXT : Date Before and After Year.
Java Code Editor:
Improve this sample solution and post your code through Disqus
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.