Here you can find the source of CalendarToString(Calendar fecha, String formato)
public static String CalendarToString(Calendar fecha, String formato) throws Exception
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Calendar; public class Main { public static String CalendarToString(Calendar fecha, String formato) throws Exception { if (nullToBlank(fecha).equals("")) { return ""; }//from ww w . j a v a2s . c om SimpleDateFormat df = new SimpleDateFormat(formato); return df.format(fecha.getTime()); } /** * retorna una cadena vacia en caso de ser null */ public static String nullToBlank(Object texto) { try { if (texto == null) { return ""; } if (texto.toString().trim().equals("null")) { return ""; } return texto.toString().trim(); } catch (Exception e) { return ""; } } }