Here you can find the source of formatCalendar(Calendar calendar)
public static String formatCalendar(Calendar calendar)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public class Main { public static SimpleDateFormat HEADER_DATE; public static String formatCalendar(Calendar calendar) { return formatDate(calendar.getTime()); }/*from ww w. j a va2 s .com*/ public static String formatDate(Date date) { return HEADER_DATE.format(date); } }