Here you can find the source of dateToString(Date date)
public static String dateToString(Date date)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static String fromatType = "yyyy-MM-dd HH:mm:ss"; public static String dateToString(Date date) { System.out.println(date); return new SimpleDateFormat(fromatType).format(date); }//from w w w. j av a 2s. co m }