Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@theodesp
Created March 11, 2020 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theodesp/68c30832def2cb601d5c2529f142cb5d to your computer and use it in GitHub Desktop.
Save theodesp/68c30832def2cb601d5c2529f142cb5d to your computer and use it in GitHub Desktop.
Get current time
package com.thdespou;
import java.util.Date;
public class Main {
public static void main(String[] args) {
// Date
Date now = new Date();
System.out.println("Current Date in milliseconds is :" + now.getTime());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment