java.util.Date getTime()方法
java.util.Date.getTime() 方法返回自1970年1月1日GTM 00:00:00(由Date对象表示)以来的毫秒数。
1 语法
public long getTime()
2 参数
无
3 返回值
它返回自1970年1月1日00:00:00 GTM以来的毫秒数。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.Date getTime()方法的例子
*/
import java.util.Date;
public class JavaDateGetTimeExample1 {
public static void main(String[] args) {
Date d=new Date(1997,3,10);
System.out.println("Current number of milliseconds science January 1, 1970, 00:00:00 GTM : "+d.getTime());
}
}
输出结果为:
Number of milliseconds science January 1, 1970, 00:00:00 GTM : 60818841000000
热门文章
优秀文章