Java tutorial
//package com.java2s; import java.util.Calendar; import java.util.Date; public class Main { public static int getDay() { return getCalendar(getCurrentDate()).get(Calendar.DAY_OF_MONTH); } public static int getDay(Date date) { return getCalendar(date).get(Calendar.DAY_OF_MONTH); } public static Calendar getCalendar(Date date) { Calendar calendar = Calendar.getInstance(); calendar.setTime(date); return calendar; } public static Date getCurrentDate() { return new Date(System.currentTimeMillis()); } }