Here you can find the source of getDateToday()
public static Date getDateToday()
//package com.java2s; import java.util.Date; public class Main { public static Date getDateToday() { Date curDate = new Date(); return curDate; }/*from w w w. j a v a2 s . c o m*/ }