The java.util.Calendar allows us to do a date arithmetic function such as add or substract a unit of time to the specified date field.
The method that done this process is the Calendar.add(int field, int amount). Where the value of the field can be Calendar.DATE, Calendar.MONTH, Calendar.YEAR. So this mean if you want to substract in days, months or years use Calendar.DATE, Calendar.MONTH or Calendar.YEAR respectively.
|
In the code above we want to know what is the date back to 30 days ago.
The sample result of the code is shown below:
Today : Tue Jan 03 06:53:03 ICT 2006
30 days ago: Sun Dec 04 06:53:03 ICT 2005
No comments:
Post a Comment