Here you can find the source of dayOfWeek(Date time)
public static int dayOfWeek(Date time)
//package com.java2s; //License from project: Apache License import java.util.Calendar; import java.util.Date; public class Main { public static int dayOfWeek(Date time) { Calendar c = Calendar.getInstance(); c.setTime(time);//from www. j ava2 s .c o m int dayForWeek = 0; if (c.get(Calendar.DAY_OF_WEEK) == 1) { dayForWeek = 7; } else { dayForWeek = c.get(Calendar.DAY_OF_WEEK) - 1; } return dayForWeek; } }