Here you can find the source of formatearDateToString(Date date)
Parameter | Description |
---|---|
date | Objeto al que se le aplicara el formato dd/MM/yyyy |
Parameter | Description |
---|---|
ParseException | an exception |
public static String formatearDateToString(Date date)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { /**/*from ww w . j av a 2 s . c o m*/ * Formato de fecha. */ public static final String FECHA_FORMATO = "dd/MM/yyyy"; /** * Metodo realiza formato dd/MM/yyyy a un objeto Date * * @param date * Objeto al que se le aplicara el formato dd/MM/yyyy * @return sdf.format(date) retorna la fecha con formato * @throws ParseException */ public static String formatearDateToString(Date date) { SimpleDateFormat sdf = new SimpleDateFormat(FECHA_FORMATO); return date != null ? sdf.format(date) : null; } }