Here you can find the source of formatFecha(Date fecha)
public static String formatFecha(Date fecha)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static final String PATRON_FECHA = "dd/mm/yyyy"; public static String formatFecha(Date fecha) { SimpleDateFormat sdf = new SimpleDateFormat(PATRON_FECHA); return sdf.format(fecha); }//from ww w . j a v a 2 s .c om }