Here you can find the source of nextMonthDateTime(Date date, int month)
public static Date nextMonthDateTime(Date date, int month)
//package com.java2s; /*/*from www .j ava 2 s . c o m*/ * Copyright (C) 2010 Viettel Telecom. All rights reserved. * VIETTEL PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ import java.util.Calendar; import java.util.Date; public class Main { public static Date nextMonthDateTime(Date date, int month) { Calendar calendar = Calendar.getInstance(); calendar.setTime(date); calendar.add(Calendar.MONTH, month); return calendar.getTime(); } }