Here you can find the source of format(Calendar calendar)
public static String format(Calendar calendar)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Calendar; public class Main { public static String format(Calendar calendar) { return new SimpleDateFormat("dd-MM-yyyy").format(calendar.getTime()); }//from w ww . j a v a2 s . co m }