Java Date Time - ZoneOffset toString() example








ZoneOffset toString() outputs this offset as a String, using the normalized ID.

Syntax

toString has the following syntax.

public String toString()

Example

The following example shows how to use toString.

import java.time.ZoneOffset;

public class Main {
  public static void main(String[] args) {
    ZoneOffset z = ZoneOffset.UTC;
    System.out.println(z.toString());
  }
}

The code above generates the following result.