Skip to content
Advertisement

How to calculate properly actual month count between 2 dates?

I have followed method getDiffDateMap that calculates difference between 2 dates and returns Map of Integers that represent milliseconds, seconds, minutes, hours, days, months and years respectively.

JavaScript

My problem is to calculate month from actual day count:

JavaScript

For example:

JavaScript

I get output: [{7=2592060000, 6=2592060, 5=43201, 4=720, 3=30, 2=4, 1=0, 0=0}] where 1 is month count and its 0. because difference is 30 days only. What flow need I add to fix this problem? Any suggestions?

Advertisement

Answer

I have followed method getDiffDateMap that calculates difference between 2 dates and returns Map of Integers that represent milliseconds, seconds, minutes, hours, days, months and years respectively.

Don’t reinvent the wheel 🙂

Joda Time has code to do all this and more. For example:

JavaScript

Note that you can’t get at the number of months when you’ve just converted the different to a number of milliseconds – as the number of months will depend on the start/end date. (30 days may or may not be a month, for example…)

I’d strongly advise you to use Joda Time throughout your Java code, in preference to java.util.*. It’s a much better API, and one which will hopefully mean you rarely-if-ever need to write your own date/time handling code.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement