ZoneId systemDefault()
gets the system default time-zone.
systemDefault
has the following syntax.
public static ZoneId systemDefault()
The following example shows how to use systemDefault
.
import java.time.ZoneId; public class Main { public static void main(String[] args) { ZoneId z = ZoneId.systemDefault(); System.out.println(z); } }
The code above generates the following result.