Here you can find the source of getWeek(Date date)
public static int getWeek(Date date)
//package com.java2s; //License from project: Open Source License import java.util.*; public class Main { public static int getWeek(Date date) { Calendar c = Calendar.getInstance(); c.setTime(date);/*from ww w.j a v a2 s.co m*/ int day = c.get(Calendar.DAY_OF_WEEK); if (day == 1) { return 7; } else { return day - 1; } } }