java利用Calendar類來計算你活了多少天?

2021-08-27 00:03:29 字數 432 閱讀 4747

計算來到這個時間多長時間的步驟:

1.輸入你的出現日期;

2.利用日期轉換,將字串轉換成date型別

3.然後將date時間換成毫秒時間

4.然後獲取當前毫秒時間;

5.最後計算出來到這個時間多少天;

public static void main(string args) throws exception 

/*** 獲取你一天活了多少天

** @param bornday 出生年月日,如:1993-8-24

* @return 活的天數

* @throws exception

*/public static int getlifeday(string bornday) throws exception

Java的Date類與Calendar類

一 date類 在jdk1.0中,date類是唯一的乙個代表時間的類,但是由於date類不便於實現國際化,所以從jdk1.1版本開始,推薦使用calendar類進行時間和日期處理。這裡簡單介紹一下date類的使用。1.使用date類代表當前系統時間 date date new date system...

JAVA中的Date類與Calendar類

calendar類 1.calendar類不能呼叫建構函式,只能使用單例模式來操作,例如 calendar test calendar.getinstance 並且只能用在static方法下。2.calendar預設是獲取當前系統距離1970年1月一日到現在的時間,可以通過test.gettime ...

常用類 Calendar類

calendar類概述及其方法 calendar 類是乙個抽象類,它為特定瞬間與一組諸如 year month day of month hour 等 日曆字段之間的轉換提供了一些方法,並為操作日曆字段 例如獲得下星期的日期 提供了一些方法。成員方法 public static calendar g...