Convert Date into milliseconds


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());
  }
}

Output:


Date is : Fri Sep 07 09:37:48 PDT 2012
Milliseconds since January 1, 1970, 00:00:00 GMT : 1347035868464
Home 
  Java Book 
    Runnable examples  

Date Convert:
  1. Convert Calendar to java.sql.Date
  2. Convert day of year to day of month
  3. Convert java.util.Date to java.sql.Time after calculation
  4. Convert java.util.Date to java.sql.Date after calculation
  5. Convert java.util.Date to java.sql.Date
  6. Convert Date into milliseconds
  7. Convert date to GMT
  8. Convert day of the year to date
  9. Convert milliseconds to readable string
  10. Elapsed time in hours/minutes/seconds
  11. Convert longs (time_t in UNIX terminology) to seconds