Here you can find the source of getDay(Date date)
public static String getDay(Date date)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getDay(Date date) { return new SimpleDateFormat("dd").format(date); }//from w w w .ja va 2s . c om }