Close

Java Date Time - Clock.systemUTC() Examples

Java Date Time Java Java API 


Class:

java.time.Clock

java.lang.Objectjava.lang.Objectjava.time.Clockjava.time.ClockLogicBig

Method:

public static Clock systemUTC()

Creates a clock that returns the current instant using the best available system clock, converting to the UTC time-zone.


Examples


package com.logicbig.example.clock;

import java.time.Clock;

public class SystemUTCExample {

public static void main(String... args) {
Clock c = Clock.systemUTC();
System.out.println(c);
}
}

Output

SystemClock[Z]




See Also