The getDisplayName(boolean daylight, int style) method of TimeZone class in Java is used to get a particular name of this TimeZone that is easily understood by the user in the specified locale as passed by the user. The name is appropriate for presentation and display purpose.
Syntax:
public final String getDisplayName(boolean daylight, int style)
Parameters: The method takes two parameters:
- daylight: This is of boolean type and specifies if the value is true then it returns the daylight savings name else false.
- style: This is either LONG or SHORT and refers to the style of display
Return Value: The method returns the display name of the TimeZone in the specified locale that is readable to the user.
Below programs illustrate the working of getDisplayName() Method of TimeZone:
Example 1:
// Java code to illustrate getDisplayName() import java.util.*; public class TimeZone_Demo { public static void main(String args[]) { // Creating a time zone object TimeZone timezone = TimeZone.getDefault(); // Getting a display name for the specified locale String display_name = timezone .getDisplayName( true , 0 ); // Display name System.out.println( "The Display name" + " for the locale is: " + display_name); } } |
The Display name for the locale is: UTC
Example 2:
// Java code to illustrate getDisplayName() import java.util.*; public class TimeZone_Demo { public static void main(String args[]) { // Creating a time zone object TimeZone timezone = TimeZone .getTimeZone( "Asia/India" ); // Getting a display name for the specified locale String display_name = timezone .getDisplayName( true , 1 ); // Display name System.out.println( "The Display name" + " for the locale is: " + display_name); } } |
The Display name for the locale is: Greenwich Mean Time
Reference: https://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html#getDisplayName(boolean, %20int)