Here you can find the source of dateToString(Date pd_fecha)
Parameter | Description |
---|---|
pd_fecha | a parameter |
@SuppressWarnings("unused") public static String dateToString(Date pd_fecha)
//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; } }