Here you can find the source of getDay(Calendar c)
public static int getDay(Calendar c)
//package com.java2s; import java.util.Calendar; public class Main { public static int getDay(Calendar c) { if (c != null) { return c.get(Calendar.DAY_OF_WEEK); } else {//from ww w.ja v a 2s. c o m return Calendar.getInstance().get(Calendar.DAY_OF_WEEK); } } }