java.util.Date.getTime()方法实例

java.util.Date.getTime()方法实例

width="728" height="90" frameborder="0" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no" allowfullscreen="true" id="aswift_0" name="aswift_0" style="box-sizing: border-box; left: 0px; position: absolute; top: 0px;">
 上一篇 下一篇  

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.


你可能感兴趣的:(java.util.Date.getTime()方法实例)