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