Wednesday, November 19, 2025
HomeLanguagesJavaTimeZone getDisplayName() Method in Java with Examples

TimeZone getDisplayName() Method in Java with Examples

The getDisplayName() method of TimeZone class in Java is used to get a particular name of this TimeZone that is easily understood by the user. The name is appropriate for presentation and display purpose.

Syntax:

public final String getDisplayName()

Parameters: The method does not take any parameters.

Return Value: The method returns the display name of the TimeZone.

Below program illustrates the working of getDisplayName() Method of TimeZone:




// Java code to illustrate getDisplayName() method
  
import java.util.*;
  
public class TimeZoneDemo {
    public static void main(String args[])
    {
        // Creating an object of TimeZone class.
        TimeZone time_zone
            = TimeZone.getDefault();
  
        // Displaying the display name of TimeZone
        System.out.println("The TimeZone: "
                           + time_zone.getDisplayName());
    }
}


Output:

The TimeZone: Coordinated Universal Time
RELATED ARTICLES

Most Popular

Dominic
32404 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6775 POSTS0 COMMENTS
Nicole Veronica
11924 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11994 POSTS0 COMMENTS
Shaida Kate Naidoo
6903 POSTS0 COMMENTS
Ted Musemwa
7159 POSTS0 COMMENTS
Thapelo Manthata
6859 POSTS0 COMMENTS
Umr Jansen
6846 POSTS0 COMMENTS