java.time.ZoneId.getId() Method Example



Description

The java.time.ZoneId.getId() method gets the unique time-zone ID.

Declaration

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

public abstract String getId()

Return Value

the time-zone unique ID, not null

Example

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

package com.tutorialspoint;

import java.time.ZoneId;

public class ZoneIdDemo {
   public static void main(String[] args) {
 
      ZoneId zoneId = ZoneId.of("Z");
      System.out.println(zoneId.getId());  
   }
}

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

Z
Advertisements