TimeZone.getDisplayName(Locale locale) has the following syntax.
public final String getDisplayName(Locale locale)
In the following code shows how to use TimeZone.getDisplayName(Locale locale) method.
//from w w w.java2 s . co m import java.util.Locale; import java.util.TimeZone; public class Main { public static void main( String args[] ){ // create default time zone object TimeZone timezone = TimeZone.getTimeZone("Europe/Paris"); // create locale Locale locale = new Locale("CHINESE", "CHINA"); // get display name for specific locale String disname=timezone.getDisplayName(locale); // checking display name System.out.println("Display name is :" + disname); } }
The code above generates the following result.