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