package javaapplication1;
import java.util.Date;
public class JavaApplication1 {
public static void main(String[] args) {
Date d = new Date();
System.out.println("Milliseconds since January 1, 1970, 00:00:00 GMT to "
+ d + " is: " + d.getTime());
}
}
/*
run:
Milliseconds from January 1, 1970 to Sat Oct 29 09:58:25 IDT 2016 is: 1477724305771
*/