Here you can find the source of convertDateToString(Date date, String format)
public static String convertDateToString(Date date, String format)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String convertDateToString(Date date, String format) { SimpleDateFormat df = new SimpleDateFormat(format); return df.format(date); }/* w w w. ja va 2 s . c o m*/ }