Here you can find the source of getDayOfMonth(Object millis)
public static String getDayOfMonth(Object millis)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getDayOfMonth(Object millis) { Date date = new Date(Long.parseLong(millis.toString())); String d = (new SimpleDateFormat("dd")).format(date); return d; }//from ww w .j a va 2s .c o m }