Here you can find the source of localeToTimeZone(Locale locale)
public static TimeZone localeToTimeZone(Locale locale)
//package com.java2s; /*!/*from w w w .jav a2 s. c o m*/ * mifmi-commons4j * https://github.com/mifmi/mifmi-commons4j * * Copyright (c) 2015 mifmi.org and other contributors * Released under the MIT license * https://opensource.org/licenses/MIT */ import java.util.Locale; import java.util.Map; import java.util.TimeZone; public class Main { private static Map<Locale, TimeZone> localeTimeZoneMap; public static TimeZone localeToTimeZone(Locale locale) { return localeTimeZoneMap.get(locale); } }