Here you can find the source of getMoscowCalendar()
public static Calendar getMoscowCalendar()
//package com.java2s; //License from project: Open Source License import java.util.*; public class Main { public static Calendar getMoscowCalendar() { return new GregorianCalendar(getMoscowTimeZone()); }/*from w w w . ja v a 2s. c o m*/ public static Calendar getMoscowCalendar(Date time) { Calendar c = getMoscowCalendar(); c.setTime(time); return c; } public static TimeZone getMoscowTimeZone() { return java.util.TimeZone.getTimeZone("Europe/Moscow"); } }