Here you can find the source of utcTimestamp(Date date)
public static String utcTimestamp(Date date)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static final SimpleDateFormat UTF_DATE_FORMAT = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'"); public static String utcTimestamp(Date date) { return UTF_DATE_FORMAT.format(date); }//from w w w.j av a2s .com }