Skip to content

Instantly share code, notes, and snippets.

@victorvaz
Created March 14, 2016 17:09
Show Gist options
  • Save victorvaz/1cfc62a86d513675d149 to your computer and use it in GitHub Desktop.
Save victorvaz/1cfc62a86d513675d149 to your computer and use it in GitHub Desktop.
package datanojava;
public class UnixTime {
public static void main(String[] args) {
long unixTimeAtual = System.currentTimeMillis() / 1000L;
System.out.println(unixTimeAtual);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment