欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

java 时间日期 字符串转Date转LocalDate 后 计算相差天数

程序员文章站 2022-06-09 16:02:25
...
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHH");
Date parse = sdf.parse(String.valueOf(temp));
LocalDate taskLocalDate=parse.toInstant().atZone(ZoneId.systemDefault()).toLocalDate();
//相差天数
long dayLength = startDay.until(nowDate, ChronoUnit.DAYS);