Here you can find the source of today()
public static Date today()
//package com.java2s; import java.util.Calendar; import java.util.Date; public class Main { public static Date today() { return Calendar.getInstance().getTime(); }//from w w w .j a va 2 s.c o m }