Here you can find the source of getUtcCalendar()
public static Calendar getUtcCalendar()
//package com.java2s; //License from project: Open Source License import java.util.Calendar; import java.util.GregorianCalendar; import java.util.TimeZone; public class Main { private static final TimeZone TIME_ZONE_UTC = TimeZone.getTimeZone("UTC"); public static Calendar getUtcCalendar() { return new GregorianCalendar(TIME_ZONE_UTC); }/*w w w . j ava 2s. co m*/ }