Here you can find the source of getDayOfTheWeek(Date date)
public static int getDayOfTheWeek(Date date)
//package com.java2s; import java.util.Calendar; import java.util.Date; public class Main { public static int getDayOfTheWeek(Date date) { Calendar c = Calendar.getInstance(); c.setTimeInMillis(date.getTime()); return c.get(Calendar.DAY_OF_WEEK); }//from w w w.j a v a2 s .c om }