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:
Java
Java
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
// 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);
}
}
Output:
Example 2:
The Display name for the locale is: UTC
// 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);
}
}
Output:
Reference: https://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html#getDisplayName(boolean, %20int)The Display name for the locale is: Greenwich Mean Time