public static String getDate(String _Date){ // String _Date = "2010-09-29 08:45:22";
// String _Date = "2018-05-02T00:00:00+0000"; SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd");
SimpleDateFormat fmt2 = new SimpleDateFormat("dd/MM/yyyy");
try { Date date = fmt.parse(_Date);
return fmt2.format(date); } catch(ParseException pe) { return "Date"; }
No comments:
Post a Comment