Here you can find the source of getDisplayDate(Date date, String format)
public static String getDisplayDate(Date date, String format)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; public class Main { public static String getDisplayDate(Date date, String format) { SimpleDateFormat formatter = new SimpleDateFormat(format, Locale.getDefault()); return formatter.format(date); }/* w w w.j av a 2 s . co m*/ }