Here you can find the source of getToday()
public static Date getToday()
//package com.java2s; import java.util.Date; public class Main { public static Date getToday() { Date now = new Date(); Date today = new Date(now.getYear(), now.getMonth(), now.getDate()); //beginning of today return today; }// w ww. java 2s. c o m }