Here you can find the source of getWeekOfMonth(Date date)
public static int getWeekOfMonth(Date date)
//package com.java2s; //License from project: Apache License import java.util.Calendar; import java.util.Date; public class Main { public static int getWeekOfMonth(Date date) { Calendar calendar = Calendar.getInstance(); calendar.setTime(date);//from w w w .jav a 2 s. c o m return calendar.get(Calendar.WEEK_OF_MONTH); } }