Java tutorial
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static boolean timeIsTodayTime(Date date) { if (date == null) { return false; } SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); String paramDate = sdf.format(date); String nowDate = sdf.format(new Date()); return paramDate.equals(nowDate); } }