标签: java jodatime
我有两个日期date1和date2,我需要获得这两个日期之间的月数, 任何人都可以帮我做。
答案 0 :(得分:2)
int result = Months.monthsBetween(date1, date2).getValue();