java.time.ZoneId.getDisplayName() Method Example



Description

The java.time.ZoneId.getDisplayName() method gets the textual representation of the zone, such as 'British Time' or '+02:00'.

Declaration

Following is the declaration for java.time.ZoneId.getDisplayName() method.

public String getDisplayName(TextStyle style, Locale locale)

Parameters

  • style − the length of the text required, not null.

  • locale − the locale to use, not null.

Return Value

the text value of the zone, not null.

Example

The following example shows the usage of java.time.ZoneId.getDisplayName() method.

package com.tutorialspoint;

import java.time.ZoneId;
import java.time.format.TextStyle;
import java.util.Locale;

public class ZoneIdDemo {
   public static void main(String[] args) {
 
      ZoneId zoneId = ZoneId.of("Z");
      System.out.println(zoneId.getDisplayName(TextStyle.SHORT,Locale.ENGLISH));  
   }
}

Let us compile and run the above program, this will produce the following result −

Z
Advertisements