Java Date Create createFutureDate()

Here you can find the source of createFutureDate()

Description

create Future Date

License

Apache License

Declaration

public static Date createFutureDate() 

Method Source Code


//package com.java2s;
/*<license>/*ww  w  .  j  a v a 2  s  . co  m*/
 Copyright 2007 - $Date$ by the authors mentioned below.
    
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at
    
 http://www.apache.org/licenses/LICENSE-2.0
    
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 </license>*/

import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;

public class Main {
    public static Date createFutureDate() {
        GregorianCalendar futureDate = new GregorianCalendar(); // now
        futureDate.add(Calendar.MONTH, 2);
        return futureDate.getTime();
    }
}

Related

  1. createDateObject(Integer year, Integer month, Integer dayOfMonth, Integer hourOfDay, Integer minute, Integer second, Integer milissecond)
  2. createDates(int yy, int mm, int dd, int hh, int min, int ss)
  3. createDateString(long startDate, long endDate)
  4. createDateTime(Date date, Date time)
  5. createDateTime(int year, int month, int day, int hour, int minute, int second, String timezone)
  6. createFutureDate(int min)
  7. createInitialDateQuery(final Date date)
  8. createTime(Date date)
  9. date()