Java tutorial
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { public static int getCurrentDay() { Calendar calendar = Calendar.getInstance(); return calendar.get(Calendar.DAY_OF_MONTH); } }