Here you can find the source of convertToString(String format, Date date)
public static String convertToString(String format, Date date)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String convertToString(String format, Date date) { if (date == null) return ""; SimpleDateFormat df = new SimpleDateFormat(format); return df.format(date); }//from w ww. j a v a2 s . c o m }