Here you can find the source of DateToString(Date fecha, String formato)
public static String DateToString(Date fecha, String formato) throws Exception
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String DateToString(Date fecha, String formato) throws Exception { if (nullToBlank(fecha).equals("")) { return ""; }/*from w w w. j a va 2 s .c om*/ SimpleDateFormat df = new SimpleDateFormat(formato); return df.format(fecha); } /** * 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 ""; } } }