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.
|
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.
| |||
|
feedback
|
|
Taken from the docs here: http://java.sun.com/j2se/1.4.2/docs/api/java/util/Calendar.html
| |||||||
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
| |||||||
feedback
|
|
You could use the
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:
Note that both of these solutions change the | |||||||
feedback
|
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) | ||||
|
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:
And:
| |||
|
feedback
|
|
Eli Courtwright second solution is wrong, it should be:
| |||||
feedback
|