import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.time.LocalDate;
import java.time.Period;
import java.util.Date;
public class Test2 {
public static void main(String[] args) throws ParseException {
//特定日期的计算 plusDays() 返回指定天数的LocalDate的副本。参数可能为负数
//例如:100天后的日期
LocalDate of1 = LocalDate.of(2019,10,18).plusDays(100);
System.out.println("100天后是 " + of1);
//例如:100天前的日期
LocalDate of2 = LocalDate.of(2019,10,18).plusDays(-100);
System.out.println("100天前是 " + of2);
System.out.println(Test2.birthday("1994-07-07","2019-10-18"));
}
//计算从出生到特定日期的 年 月 日 ,要求输入yyyy-MM-dd形式String类型的参数
public static String birthday(String start,String end){
Period period = Period.between(LocalDate.parse(start), LocalDate.parse(end));
String birthday = String.format("%d岁%d个月%d天", period.getYears(), period.getMonths(),period.getDays());
return birthday;
}
//计算从出生到特定日期的天数,要求输入yyyy-MM-dd形式String类型的参数
public static long days(String start,String end) throws ParseException {
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Date date_start = format.parse(start);
Date date_end = format.parse(end);
return (date_start.getTime()-date_end.getTime())/(24*3600*1000);
}
}