今天在做一个线程工具的时候,突然要用到日期格式的转换。
然后就自己写了一个计算天数的方法,我输入自己的出生年月,发现我快活了10000天了。我要加油啦。输入自己的出生日期,自己算一下吧。例如:birthday="1988-12-12"
?
public void fetchAge(String birthday) throws ParseException {
SimpleDateFormat format = new SimpleDateFormat("yyyy-mm-dd");
Date birthDate = format.parse(birthday);
Date now = new Date(System.currentTimeMillis());
now.compareTo(birthDate);
System.out.println(birthDate);
System.out.println(now);
Calendar cal = Calendar.getInstance(); ? ?
? ? ? ? cal.setTime(birthDate); ? ?
? ? ? ? long time1 = cal.getTimeInMillis(); ? ? ? ? ? ? ? ??
? ? ? ? cal.setTime(now); ? ?
? ? ? ? long time2 = cal.getTimeInMillis(); ? ? ? ??
? ? ? ? long between_days=(time2-time1)/(1000*3600*24);
System.out.println(between_days);
}
?
?
岁月啊,你能慢点吗。