Here you can find the source of convertDate(Date d)
public static String convertDate(Date d)
//package com.java2s; //License from project: Open Source License import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssXXX"); public static String convertDate(Date d) { return df.format(d); }//from ww w.jav a 2 s. co m }