Here you can find the source of day(Calendar calendar)
public static int day(Calendar calendar)
//package com.java2s; //License from project: Open Source License import java.util.Calendar; public class Main { public static int day(Calendar calendar) { return calendar.get(Calendar.DAY_OF_MONTH); }/*from w w w .j a va 2s .co m*/ public static int day() { return Calendar.getInstance().get(Calendar.DAY_OF_MONTH); } }