Here you can find the source of convertDateToStr(Date d, String format)
public static String convertDateToStr(Date d, String format)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String convertDateToStr(Date d, String format) { SimpleDateFormat simpledateformat = new SimpleDateFormat(format); String s;//from w w w . ja v a2s.c o m try { s = simpledateformat.format(d).toString(); return s; } catch (Exception e) { s = "1900-01-01"; } return s; } }