Here you can find the source of getFormatDate(Date date)
public static String getFormatDate(Date date)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getFormatDate(Date date) { return getFormatDateTime(date, "yyyy-MM-dd"); }//w ww . java2 s. c o m public static String getFormatDate(String format) { return getFormatDateTime(new Date(), format); } public static String getFormatDateTime(Date date, String format) { SimpleDateFormat sdf = new SimpleDateFormat(format); return sdf.format(date); } }