Here you can find the source of date2Str(Date date)
public static String date2Str(Date date)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String date2Str(Date date) { String format = "yyyy-MM-dd HH:mm:ss"; return date2Str(date, format); }/* ww w . j a v a2s. c om*/ public static String date2Str(Date date, String format) { SimpleDateFormat df = new SimpleDateFormat(format); return df.format(date); } }