java.time.ZoneOffset.getTotalSeconds() Method Example



Description

The java.time.ZoneOffset.getTotalSeconds() method gets the total zone offset in seconds.

Declaration

Following is the declaration for java.time.ZoneOffset.getTotalSeconds() method.

public int getTotalSeconds()

Return Value

the total zone offset amount in seconds.

Example

The following example shows the usage of java.time.ZoneOffset.getTotalSeconds() method.

package com.tutorialspoint;

import java.time.ZoneOffset;

public class ZoneOffsetDemo {
   public static void main(String[] args) {
 
  ZoneOffset zoneOffset = ZoneOffset.of("+02:00");
      System.out.println(zoneOffset.getTotalSeconds());  
   }
}

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

7200
Advertisements