java.util.Date.getTime()方法實例
java.util.Date.getTime() 方法返回自1970年1月1日00:00:00 GMT已經過去了多少毫秒
聲明
以下是java.util.Date.getTime()方法的聲明
public long getTime()
參數
-
NA
返回值
此方法返回自1970年1月1日00:00:00 GMT已經過去的毫秒
異常
-
NA
例子
下麵的例子顯示java.util.Date.equals(obj) 方法的用法。
package com.yiibai; import java.util.*; public class DateDemo { public static void main(String[] args) { // create a date Date date = new Date(97, 1, 23); long diff = date.getTime(); // print how many seconds have passed since January 1, 1970, 00:00:00 GMT System.out.println("If date is 23-01-1997, " + diff + " have passed."); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
If date is 23-01-1997, 856648800000 seconds have passed.