I have start date and end date.
I need the number of months between this two dates in java.
For eg, from date:29-01-2009 to date :02-02-2009
(It has jan date and Feb date).
It should return 2.
|
|
|
I would strongly recommend Joda for this.
Note also Nick Holt's comments below re. daylight savings changes. |
|||||||||||
|
|
As the rest say, if there's a library that will give you time differences in months, and you can use it, then you might as well. Otherwise, if
Note that the middle term, (m2 - m1), might be negative even though the second date is after the first one, but that's fine. It doesn't matter whether months are taken with January=0 or January=1, and it doesn't matter whether years are AD, years since 1900, or whatever, as long as both dates are using the same basis. So for example don't mix AD and BC dates, since there wasn't a year 0 and hence BC is offset by 1 from AD. You'd get |
|||
|
|
using joda time would be like this (i compared how many months between today and 20/dec/2012)
Result: 41 months (from july 6th 2009) should be easy ? :) ps: you can also convert your date using SimpleDateFormat like:
If you don't want to use Joda (for whatever reason), you can convert your date to TimeStamp and then do the differences of milli seconds between both date and then calculate back to months. But I still prefer to use Joda time for the simplicity :) |
|||||
|
|
Apart from using Yoda time which seems to be the the favorite suggestion I'd offer the following snippet:
|
|||||
|
|
|
Joda Time is a pretty cool library for Java Date and Time and can help you achieve what you want using |
|||
|
|
|
You can use a Calendar or Joda time library for this. In Joda time you can use the Days.daysBetween() method. You can then calculate the months difference. You can also use DateTime.getMonthOfYear() and do a subtraction (for dates in the same year). |
|||||||
|
|
it is not the best anwer but you can use unixtimestamp First you find the unixtime's of the dates then eject each other Finally you should convert the unixtime(sum) to String |
|||
|
|
I had to write this implementation, becoz I had custom defined periods, which i had to look for within two dates. Here you can define you custom period and put the logic, for calculation. Here TimePeriod is a POJO which has start, end, period start, period End public class Monthly extends Period {
} |
|||
|
|
|
That's because the classes java Date and Calendar use the Month indices from 0-11 January = 0 December = 1 Is recommended to use Joda Time! |
|||
|
|