Here you can find the source of formatDate(Date date)
public static String formatDate(Date date)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public final static String DATE_TIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSSZ"; public static String formatDate(Date date) { if (date == null) { return ""; }/*from w w w .j av a2 s. c o m*/ return new SimpleDateFormat(DATE_TIME_FORMAT).format(date); } }