Java Date Time - ZoneOffset getTotalSeconds() example








ZoneOffset getTotalSeconds() gets the total zone offset in seconds.

Syntax

getTotalSeconds has the following syntax.

public int getTotalSeconds()

Example

The following example shows how to use getTotalSeconds.

import java.time.ZoneOffset;

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

The code above generates the following result.