Here you can find the source of setBelarusTimeZone()
public static void setBelarusTimeZone()
//package com.java2s; //License from project: Open Source License import java.util.TimeZone; public class Main { public static final String TIME_ZONE_BELARUS = "GMT+2:00"; public static void setBelarusTimeZone() { TimeZone.setDefault(TimeZone.getTimeZone(TIME_ZONE_BELARUS)); }// www . jav a 2s . com }