Android Calendar Add afterNDays(Calendar c, int n)

Here you can find the source of afterNDays(Calendar c, int n)

Description

after N Days

Declaration

public static Calendar afterNDays(Calendar c, int n) 

Method Source Code

//package com.java2s;

import java.util.Calendar;

public class Main {
    public static Calendar afterNDays(Calendar c, int n) {

        long offset = n * 24 * 60 * 60 * 1000;
        Calendar calendar = null;
        if (c != null) {
            calendar = c;/*  w  w w .  j  a va  2 s.  c  o  m*/
        } else {
            calendar = Calendar.getInstance();
        }

        calendar.setTimeInMillis(calendar.getTimeInMillis() + offset);
        return calendar;
    }
}

Related

  1. add(int field, long time, int val)
  2. addDay(Calendar c, int days)
  3. addMonth(Calendar c, int months)
  4. after(Calendar c, long offset)
  5. getDateAdd(Date date, int amount)
  6. getDateByAddFltHour(float flt)
  7. getDateByAddHour(String datetime, int minute)
  8. getFormatCurrentAdd(int amount, String format)