Here you can find the source of convertDate(Date date)
protected static String convertDate(Date date)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { protected static String convertDate(Date date) { if (date != null) return new SimpleDateFormat("yyyy-MM-dd'T'h:m:ssZ").format(date); else/* ww w . j ava 2 s . co m*/ return null; } }