Here you can find the source of stringToTimeZone(String tzString)
public static TimeZone stringToTimeZone(String tzString)
//package com.java2s; //License from project: Apache License import java.util.TimeZone; public class Main { public static TimeZone stringToTimeZone(String tzString) { return TimeZone.getTimeZone(tzString != null ? tzString : ""); }//from w w w . java2 s.co m }