Java tutorial
//package com.java2s; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String FormatTime(String time) { if (time == null || time.equals("")) { return ""; } else { DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ"); Date date = null; try { date = dateFormat.parse(time); } catch (ParseException e) { e.printStackTrace(); } return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(date); } } }