Here you can find the source of nextWeek(Date date, int week)
public static Date nextWeek(Date date, int week)
//package com.java2s; //License from project: Apache License import java.util.*; public class Main { public static Date nextWeek(Date date, int week) { Calendar cal = Calendar.getInstance(); if (date != null) { cal.setTime(date);/*w w w .j a va2s . c o m*/ } cal.add(Calendar.WEEK_OF_MONTH, week); return cal.getTime(); } }