- java.time - Home
- java.time - Clock
- java.time - Duration
- java.time - Instant
- java.time - LocalDate
- java.time - LocalDateTime
- java.time - LocalTime
- java.time - MonthDay
- java.time - OffsetDateTime
- java.time - OffsetTime
- java.time - Period
- java.time - Year
- java.time - YearMonth
- java.time - ZonedDateTime
- java.time - ZoneId
- java.time - ZoneOffset
- java.time Package Enums
- java.time - Month
- java.time Useful Resources
- java.time - Discussion
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