import java.time.LocalDate;
import java.time.Period;

    public class DateDiff {

        public static void main(String[] args) {
            /** The date at the end of the last century */
            LocalDate endofCentury = LocalDate.of(2000, 12, 31);
            LocalDate now = LocalDate.now();

            Period diff = Period.between(endofCentury, now);

            System.out.printf("The 21st century (up to %s) is %s old%n", now, diff);
            System.out.printf("The 21st century is %d years, %d months and %d days old",
                    diff.getYears(), diff.getMonths(), diff.getDays());
        }
    }


我缺少导入指令时找不到本地日期

最佳答案

检查您是否正在使用JDK 8。
我想你不是,那是你的问题。

关于java - 导入java.time.LocalDate失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22760121/

10-12 07:40