Here you can find the source of toUTCFormattedString(Date date)
public static String toUTCFormattedString(Date date)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; import java.util.TimeZone; public class Main { public static String toUTCFormattedString(Date date) { SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'"); df.setTimeZone(TimeZone.getTimeZone("UTC")); return df.format(date); }// w w w . j a v a2 s.c om }