Java yyyy formatearDateToString(Date date)

Here you can find the source of formatearDateToString(Date date)

Description

Metodo realiza formato dd/MM/yyyy a un objeto Date

License

Apache License

Parameter

Parameter Description
date Objeto al que se le aplicara el formato dd/MM/yyyy

Exception

Parameter Description
ParseException an exception

Return

sdf.format(date) retorna la fecha con formato

Declaration

public static String formatearDateToString(Date date) 

Method Source Code

//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;
    }
}

Related

  1. formatDateNoTime(Date date)
  2. formatDateString(java.util.Date date, String format)
  3. formatDateToString(Date d)
  4. formatDateToString(String strDate)
  5. formatDicomDate(String dicomDate)
  6. formatFecha(Date fecha)
  7. formatFromDate(Date date)
  8. formatG(Date date)
  9. formatHL7TSFormat4Date(Date time)