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