package com.wf.dao;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class B {
/**
* @throws ParseException
* @测试你活了多少年
*/
public static void main(String[] args) throws ParseException {
String brithday = "1993年120月26日";
String today = "2015年9月9日";
SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日");
Date d = sdf.parse(brithday);
Date d1 = sdf.parse(today);
long time = d1.getTime() - d.getTime();
System.out.println(time / 1000 / 60 / 60 / 24 );
}
}
|
|