Java tutorial
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Locale; import java.util.TimeZone; public class Main { public static long getCurrentGmtTime(String format) { final SimpleDateFormat dateFormatGmt = new SimpleDateFormat(format, Locale.getDefault()); dateFormatGmt.setTimeZone(TimeZone.getTimeZone("GMT")); return dateFormatGmt.getCalendar().getTimeInMillis(); } }