Here you can find the source of extractDateFromCalendarTime(Calendar time)
public static String extractDateFromCalendarTime(Calendar time)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Calendar; public class Main { public static String extractDateFromCalendarTime(Calendar time) { SimpleDateFormat dateFormatter = new SimpleDateFormat("dd-MM-yyyy"); return dateFormatter.format(time.getTime()); }//from w ww. j a va 2s .c o m }