Java Date Time Java Java API
java.time.Clock
public static Clock systemDefaultZone()
Creates a clock that returns the current instant using the best available system clock, converting to the default time-zone.
package com.logicbig.example.clock;import java.time.Clock;public class SystemDefaultZoneExample { public static void main(String... args) { Clock c = Clock.systemDefaultZone(); System.out.println(c); }}
SystemClock[America/Chicago]