Convert Date into milliseconds in Java
Description
The following code shows how to convert Date into milliseconds.
Example
/* ww w . j a va2 s . c o m*/
import java.util.Date;
public class Main {
public static void main(String args[]) {
Date date = new Date();
System.out.println("Date is : " + date);
System.out.println("Milliseconds since January 1, 1970, 00:00:00 GMT : " + date.getTime());
}
}
The code above generates the following result.