Here you can find the source of formatterDate(Date date)
public static String formatterDate(Date date)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String formatterDate(Date date) { SimpleDateFormat formatter = new SimpleDateFormat("MMMMM dd, yyyy"); return formatter.format(date); }//from w ww .j a v a2s. c o m }