Skip to content

Instantly share code, notes, and snippets.

@hamdouni
Created October 11, 2017 08:27
Show Gist options
  • Save hamdouni/d59802bc683a4f9cc6b6a7621f0a5d9a to your computer and use it in GitHub Desktop.
Save hamdouni/d59802bc683a4f9cc6b6a7621f0a5d9a to your computer and use it in GitHub Desktop.
Print a date in java
import java.util.Date;
public class printDate {
public static void main(String[] args) {
Date d = new Date();
System.out.println(d);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment