Here you can find the source of formatDate(Date date)
public static String formatDate(Date date)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; public class Main { public static final SimpleDateFormat DATE_FORMAT_YYYYMMDD_HHMMSS = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss", Locale.getDefault()); public static String formatDate(Date date) { return DATE_FORMAT_YYYYMMDD_HHMMSS.format(date); }/*from ww w .j a v a2 s . com*/ }