Here you can find the source of CompareDate(Date date, Date otherdate)
public static boolean CompareDate(Date date, Date otherdate)
//package com.java2s; //License from project: Open Source License import java.text.DateFormat; import java.util.Date; public class Main { public static boolean CompareDate(Date date, Date otherdate) { DateFormat format = DateFormat.getDateInstance(DateFormat.MEDIUM); String datesb1 = format.format(date); String datesb2 = format.format(otherdate); return datesb1.equals(datesb2); }//from ww w . ja va 2s. co m }