Skip to content

Instantly share code, notes, and snippets.

@theodesp
Created March 11, 2020 20:42
Show Gist options
  • Save theodesp/77203e977958adc5644475011a3ba6af to your computer and use it in GitHub Desktop.
Save theodesp/77203e977958adc5644475011a3ba6af to your computer and use it in GitHub Desktop.
UTC in Java
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