如何从特定日期获得总月数?

时间:2015-10-19 05:17:06

标签: android datetime jodatime

我是Android新手。我有一个要求,我有一个字段可以输入一个人的出生日期。成功选择我想要从DOB返回到当前日期的总月数。例如,如果我在19/10/2012进入DOB我想要返回36(月)。我搜索了这个,但没有找到任何适合我的要求。这是我当前的代码,它返回成功的数据,

private void showDate(int year, int month, int day) {

    Calendar cal = Calendar.getInstance();
    cal.setTimeInMillis(0);
    cal.set(year, month, day);
    Date date = cal.getTime();
    SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");

    if(System.currentTimeMillis() > date.getTime()) {
        edtDate.setText(sdf.format(date));
        LocalDate date1 = new LocalDate(date);
        LocalDate date2 = new LocalDate(new java.util.Date());
        PeriodType monthDay = PeriodType.yearMonthDayTime();
        Period difference = new Period(date1, date2, monthDay);
        int months = difference.getMonths();
        months=months + 1;
        System.out.println("16102015:Nunber of Months"+months);
    }else{
        Toast.makeText(mActivity,getResources().getString(R.string.date_validationmsg),Toast.LENGTH_LONG).show();
    }


}

5 个答案:

答案 0 :(得分:4)

Calendar startCalendar = new GregorianCalendar();
startCalendar.setTime(startDate);
Calendar endCalendar = new GregorianCalendar();
endCalendar.setTime(endDate);

int diffYear = endCalendar.get(Calendar.YEAR) - startCalendar.get(Calendar.YEAR);
int diffMonth = diffYear * 12 + endCalendar.get(Calendar.MONTH) - startCalendar.get(Calendar.MONTH);

答案 1 :(得分:2)

首先,我建议使用LocalDate代替DateTime进行计算。理想情况下,根本不要使用java.util.Date,并将您的输入作为LocalDate开始(例如,通过直接解析文本或数据来自何处。)在两个日期中将月中的日期设置为1 ,然后在几个月内采取差异:

private static int monthsBetweenDates(LocalDate start, LocalDate end) {
    start = start.withDayOfMonth(1);
    end = end.withDayOfMonth(1);
    return Months.monthsBetween(start, end).getMonths();
}

更新1

请参阅this链接OP接受相同的答案,因为Months.monthsBetween()方法对他不适用

更新2

LocalDate userEnteredDate = LocalDate.parse( new SimpleDateFormat("yyyy-MM-dd").format(date));    
LocaleDate currentDate =  LocalDate.parse( new SimpleDateFormat("yyyy-MM-dd").format(new Date()));

int months = monthsBetweenDates(userEnteredDate, currentDate)

答案 2 :(得分:1)

使用Joda-time库here,我能够获得所需的结果。 尝试以下代码,它会在几个月内给出所需的差异。

reflog

答案 3 :(得分:0)

使用JodaTime,非常简单:

答案 4 :(得分:0)

使用此代码计算两个日期之间的月份

public static int monthsBetweenUsingJoda(Date d1, Date d2) {
    return Months.monthsBetween(new LocalDate(d1.getTime()), new LocalDate(d2.getTime())).getMonths();
}