Here you can find the source of format(Date date)
public static String format(Date date)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { private final static SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); public static String format(Date date) { if (date == null) { return "--"; }//from ww w . ja va 2 s .c o m return sdf.format(date); } }