Online Java Compiler By
JavaTpoint.com
import java.util.Date; public class JavaDateGetDateExample1 { public static void main(String[] args) { Date d=new Date(); System.out.println("date of the month is : "+d.getDate()); } }
Output