ZoneOffset getTotalSeconds()
gets the total zone offset in seconds.
getTotalSeconds
has the following syntax.
public int getTotalSeconds()
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.