Created
March 11, 2020 20:42
-
-
Save theodesp/77203e977958adc5644475011a3ba6af to your computer and use it in GitHub Desktop.
UTC in Java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.thdespou; | |
import java.time.Instant; | |
public class Main { | |
public static void main(String[] args) { | |
Instant now = Instant.now(); | |
System.out.println("Date is " + now); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment