Here you can find the source of dateToString(Date date)
public synchronized static String dateToString(Date date)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { static SimpleDateFormat format = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss"); public synchronized static String dateToString(Date date) { if (date == null) { return null; }//from w w w .j a va2 s . c om return format.format(date); } }