Java web工程中獲取系統精確時間(到秒級別)

蔚藍的珊瑚海_xdcaxy2013發表於2015-12-05

傳統的設定系統精確時間方法

   Date date = new Date();
   SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
   System.out.println(sdf.format(date));

但它不能往,Timestamp下,如:

public void setLastLoginTime(Timestamp lastLoginTime) {
    this.lastLoginTime = lastLoginTime;
}

工作中,發現如下獲取系統時間最快

Timestamp ts = new Timestamp(System.currentTimeMillis());

1、一個Timestamp;

2、一個System.currentTimeMillis()

即可以往上述引數內賦值


相關文章