java实现,如何在当前时间往后推N天

  • Post author:
  • Post category:java


调用 getAfterDay 传入后推的天数,就能获取到当前时间往后推N天的时间

    public static Date asDate(LocalDateTime localDateTime) {
        return Date.from(localDateTime.atZone(ZoneId.systemDefault()).toInstant());
    }

    public static Date getAfterDay(int afterDay) {
        LocalDateTime localDateTime = LocalDateTime.now().plusDays(afterDay);
        return asDate(localDateTime);
    }



版权声明:本文为u012389318原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。