Here you can find the source of getWeek(Calendar calendar)
public static int getWeek(Calendar calendar)
//package com.java2s; //License from project: Open Source License import java.util.Calendar; public class Main { public static int getWeek(Calendar calendar) { return calendar.get(Calendar.WEEK_OF_YEAR); }//from ww w . j a v a2 s.c o m }