将日期添加到日历不会更新月份

adding date to calendar is not updating month

我正在开发一个 android 应用程序并且是新手。

我必须从用户那里获取日期,然后加上 28 天并将其存储在数据库中。

这是我目前所做的

private void saveDate() throws ParseException {
    DatabaseHelper db = new DatabaseHelper(ActivityPeriodToday.this.getActivity());

    String pDate = periodDate.getText().toString().trim();
    String pTime = periodTime.getText().toString().trim();
    String next_expected = getNextExpected(pDate);

    boolean isInserted = db.insertPeriodTodayIntoPeriods(pDate, pTime, early_late, pDifference, pType, next_expected);

    if (isInserted == true) {
        Toast.makeText(ActivityPeriodToday.this.getActivity(), "Saved", Toast.LENGTH_SHORT).show();

    } else {
        Toast.makeText(ActivityPeriodToday.this.getActivity(), "Could not be saved", Toast.LENGTH_SHORT).show();
    }

}

private String getNextExpected(String pDate) {
    SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
    Calendar c = Calendar.getInstance();
    try {
        c.setTime(sdf.parse(pDate));
    } catch (ParseException e) {
        e.printStackTrace();
    }

    c.add(Calendar.DAY_OF_MONTH, 28);
    return sdf.format(c.getTime());
}

但是代码不是递增月份。

Ex. If user selects 01/11/2016, then date is incremented and is saved 29/11/2016. But if user selects 16/11/2016 then saves date is 28/11/2016 but this should be 14/12/2016

试试这个:

calendar.add(Calendar.DAY_OF_YEAR, 28);

步骤 1

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
            Calendar c = Calendar.getInstance();
            c.setTime(sdf.parse(dateInString));

第 2 步使用 add() 将天数添加到日历

c.add(Calendar.DATE, 40); 

它对我有用。

Calendar c = Calendar.getInstance();
            int Year = c.get(Calendar.YEAR);
            int Month = c.get(Calendar.MONTH);
            int Day = c.get(Calendar.DAY_OF_MONTH);
            //  current date
            String CurrentDate = Year + "/" + Month + "/" + Day;
            String dateInString = CurrentDate; // Start date
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
            c = Calendar.getInstance();
            try {
                c.setTime(sdf.parse(dateInString));
            } catch (ParseException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            c.add(Calendar.DATE, 28);//insert the number of days that you want
            sdf = new SimpleDateFormat("dd/MM/yyyy");
            Date resultdate = new Date(c.getTimeInMillis());
            dateInString = sdf.format(resultdate);
            Toast.makeText(MainActivity.this, ""+dateInString, Toast.LENGTH_SHORT).show();

您的问题可能已经在这里有了答案:How can I increment a date by one day in Java?

或者您可以简单地使用

c.add(Calendar.DATE, 28);

而不是

c.add(Calendar.DAY_OF_MONTH, 28);