Here you can find the source of formatDate(Date date)
public static String formatDate(Date date)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static SimpleDateFormat FORMATTER = new SimpleDateFormat( "d MMMM yyyy"); public static String formatDate(Date date) { return FORMATTER.format(date); }/*from w w w.j ava 2 s . c o m*/ }