Here you can find the source of weekDay(Calendar date)
public static int weekDay(Calendar date)
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { public static int weekDay(Calendar date) { return date.get(Calendar.DAY_OF_WEEK); }/*w w w .j av a2 s. c o m*/ }