gpt4 book ai didi

java - 获取一周中给定日期的下一个 LocalDateTime

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:08:17 25 4
gpt4 key购买 nike

我想在下一个(例如)星期一的日期/时间创建 LocalDateTime 的实例。

Java Time API 中有什么方法吗,还是我应该计算当前日期和目标日期之间的天数,然后使用 LocalDateTime.of() 方法?

最佳答案

无需手动进行任何计算。

您可以使用 LocalDateTime.with(adjuster) 方法使用调整器调整给定日期.一周的第二天有一个内置的调节器:TemporalAdjusters.next(dayOfWeek) :

Returns the next day-of-week adjuster, which adjusts the date to the first occurrence of the specified day-of-week after the date being adjusted.

public static void main(String[] args) {
LocalDateTime dateTime = LocalDateTime.now();
LocalDateTime nextMonday = dateTime.with(TemporalAdjusters.next(DayOfWeek.MONDAY));
System.out.println(nextMonday);
}

此代码将根据当前日期返回下一个星期一。

使用静态导入,这使代码更易于阅读:

LocalDateTime nextMonday = dateTime.with(next(MONDAY));

请注意,如果当前日期已经是星期一,此代码将返回下一个星期一(即下周的星期一)。如果你想在这种情况下保留当前日期,你可以使用 nextOrSame(dayOfWeek) .

关于java - 获取一周中给定日期的下一个 LocalDateTime,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35365571/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com