Subtract days from current date using Calendar.add method
import java.util.Calendar;
public class Main {
public static void main(String[] args) {
Calendar now = Calendar.getInstance();
System.out.println("Current date : " + (now.get(Calendar.MONTH) + 1) + "-"
+ now.get(Calendar.DATE) + "-" + now.get(Calendar.YEAR));
now = Calendar.getInstance();
now.add(Calendar.DATE, -10);
System.out.println("date before 10 days : " + (now.get(Calendar.MONTH) + 1) + "-"
+ now.get(Calendar.DATE) + "-" + now.get(Calendar.YEAR));
}
}
Output:
Current date : 2-20-2009
date before 10 days : 2-10-2009
Home
Java Book
Runnable examples
Java Book
Runnable examples
Date Add Time:
- Add amount to a date returning a new object
- Add hour to a date returning a new object
- Add millisecond to a date returning a new object
- Add minute to a date returning a new object
- Add month to a date returning a new object
- Add negative value to a calendar
- Add second to a date returning a new object
- Add week to a date returning a new object
- Add year to a date returning a new object
- Subtract days from current date using Calendar.add method
- Subtract hours from current date using Calendar.add method
- Subtract minutes from current date using Calendar.add method
- Subtract months from current date using Calendar.add method
- Subtract seconds from current time using Calendar.add method
- Subtract week from current date
- Subtract 1 year from the calendar
- Subtract year from current date