Here you can find the source of getCurrentDate()
public static String getCurrentDate()
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getCurrentDate() { return getFormatDateTime(new Date(), "yyyy-MM-dd"); }//from w w w.j a va 2s .c o m public static String getFormatDateTime(Date date, String format) { SimpleDateFormat sdf = new SimpleDateFormat(format); return sdf.format(date); } }