Java Date to String dateToString(Date pd_fecha)

Here you can find the source of dateToString(Date pd_fecha)

Description

TODO [Convierte el obeto de fecha a Strgin dando formato, esta fecha es usada para crear parte del identificador del bloque de registros que se este procesando.]

License

Open Source License

Parameter

Parameter Description
pd_fecha a parameter

Return

La fecha con el formato establecido.

Declaration

@SuppressWarnings("unused")
public static String dateToString(Date pd_fecha) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {

    @SuppressWarnings("unused")
    public static String dateToString(Date pd_fecha) {
        String ls_fecha = null;/*from  w w w.  ja  v a2s  .  c om*/
        try {
            SimpleDateFormat formatDateJava = new SimpleDateFormat("ddMMyyyyHH:mm:ss");
            ls_fecha = formatDateJava.format(pd_fecha);
        } catch (Exception e) {

            ls_fecha = null;
        }
        return ls_fecha;
    }
}

Related

  1. dateToString(Date date, String strFormat)
  2. datetostring(Date dateInst)
  3. DateToString(Date Expression)
  4. dateToString(Date fecha)
  5. DateToString(Date fecha, String formato)
  6. dateToString(Date pDate, String pFormat)
  7. dateToString(Date pdttValue, String pstrDateFormat)
  8. DateToString(Date thisdate, Locale locale)
  9. dateToString(final Date date)