Here you can find the source of getToday()
public static Date getToday()
//package com.java2s; //License from project: Open Source License import java.util.Calendar; import java.util.Date; public class Main { public static Date getToday() { Calendar cal = Calendar.getInstance(); return cal.getTime(); }/*from www .j av a 2s . c o m*/ }