计算日期后 3 个月 - Android

calculate 3 months after the date - Android

我想计算从数据库中提取的日期之后的 4 个月。我怎样才能做到这一点。 history的输出如下

11 月 27 日,星期三 14:42:23 GMT+03:00 2019

  JSONObject form_tarih2 = jObj.getJSONObject("form_tarih2");
        String date = form_tarih2.getString("date");
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.US);
        Date calculateDate = sdf.parse(date);

试试这个:

JSONObject form_tarih2 = jObj.getJSONObject("form_tarih2");
String date = form_tarih2.getString("date");
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.US);
Date calculateDate = sdf.parse(date);

final Calendar calendar = Calendar.getInstance();
calendar.setTime(calculateDate);
calendar.add(Calendar.MONTH,4);

您可以根据需要使用 add/sub 天、月、年等 Calendar