Anyone know a simple way using java calendar to subtract X days to a date?

Sry not being able to find any function which allows me to directly subtract X days to a date in java, if anyone could point me into the correct direction.

link|improve this question

feedback

6 Answers

up vote 17 down vote accepted

Taken from the docs here: http://java.sun.com/j2se/1.4.2/docs/api/java/util/Calendar.html

Date Arithmetic function. Adds the specified (signed) amount of time to the given time field, based on the calendar's rules. For example, to subtract 5 days from the current time of the calendar, you can achieve it by calling:

add(Calendar.DATE, -5).

link|improve this answer
Just be careful doing this since it doesn't always roll like you expect it to. – carson Oct 17 '08 at 14:18
1  
sh*t i was looking for subtract when reading that and totaly forgot the existance of add, ty – fmsf Oct 17 '08 at 14:18
feedback

Anson's answer will work fine for the simple case, but if you're going to do any more complex date calculations I'd recommend checking out Joda Time. It will make your life much easier.

FYI in Joda Time you could do

DateTime dt = new DateTime();
DateTime fiveDaysEarlier = dt.minusDays(5);
link|improve this answer
Dats really great answer 4 me.but can i change date format – Shahzad Imam Feb 28 at 13:54
@ShahzadImam, check out DateTimeFormat. It will allow you to convert DateTime instances to strings using arbitrary formats. It's very similar to the java.text.DateFormat class. – Mike Deck Feb 28 at 15:40
It solved d problem.Thx mike – Shahzad Imam Feb 29 at 5:59
feedback

You could use the add method and pass it a negative number. However, you could also write a simpler method that doesn't use the Calendar class such as the following

public static void addDays(Date d, int days)
{
    d.setTime( d.getTime() + days*1000*60*60*24 );
}

This gets the timestamp value of the date (milliseconds since the epoch) and adds the proper number of milliseconds. You could pass a negative integer for the days parameter to do subtraction. This would be simpler than the "proper" calendar solution:

public static void addDays(Date d, int days)
{
    Calendar c = Calendar.getInstance();
    c.setTime(d);
    c.add(Calendar.DATE, days);
    d.setTime( c.getTime().getTime() );
}

Note that both of these solutions change the Date object passed as a parameter rather than returning a completely new Date. Either function could be easily changed to do it the other way if desired.

link|improve this answer
3  
Don't believe .setTime and .add are static methods of Calendar. You should be using the instance variable c. – Edward Apr 8 '11 at 14:14
@Edward: you are correct, thanks for pointing out my mistake, I've fixed the code so that it should now work properly. – Eli Courtwright Apr 11 '11 at 15:58
feedback
int x = -1;
Calendar cal = ...;
cal.add(Calendar.DATE, x);

edit: the parser doesn't seem to like the link to the Javadoc, so here it is in plaintext:

http://java.sun.com/j2se/1.4.2/docs/api/java/util/Calendar.html#add(int, int)

link|improve this answer
feedback

Someone recommended Joda Time so - I have been using this CalendarDate class http://calendardate.sourceforge.net

It's a somewhat competing project to Joda Time, but much more basic at only 2 classes. It's very handy and worked great for what I needed since I didn't want to use a package bigger than my project. Unlike the Java counterparts, its smallest unit is the day so it is really a date (not having it down to milliseconds or something). Once you create the date, all you do to subtract is something like myDay.addDays(-5) to go back 5 days. You can use it to find the day of the week and things like that. Another example:

CalendarDate someDay = new CalendarDate(2011, 10, 27);
CalendarDate someLaterDay = today.addDays(77);

And:

//print 4 previous days of the week and today
String dayLabel = "";
CalendarDate today = new CalendarDate(TimeZone.getDefault());
CalendarDateFormat cdf = new CalendarDateFormat("EEE");//day of the week like "Mon"
CalendarDate currDay = today.addDays(-4);
while(!currDay.isAfter(today)) {
    dayLabel = cdf.format(currDay);
    if (currDay.equals(today))
        dayLabel = "Today";//print "Today" instead of the weekday name
    System.out.println(dayLabel);
    currDay = currDay.addDays(1);//go to next day
}
link|improve this answer
feedback

Eli Courtwright second solution is wrong, it should be:

Calendar c = Calendar.getInstance();
c.setTime(date);
c.add(Calendar.DATE, -days);
date.setTime(c.getTime().getTime());
link|improve this answer
The name of the function in Eli's solution is addDays; his solution is correct. If you want to subtract days from the date, you pass in a negative value for days. – Thomas Upton Jan 14 '10 at 18:57
Well, that is something that the programmer has to specify when creating the function, no? :P – user178973 Jan 19 '10 at 13:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.