gpt4 book ai didi

java - 我怎样才能在UTC java中获得今天的具体时间

转载 作者:行者123 更新时间:2023-11-29 08:30:30 24 4
gpt4 key购买 nike

我正在尝试获取“今天”的 UTC 时间。说世界标准时间下午 5 点
Instant.now().truncatedTo(ChronoUnit.DAYS).plus(1, ChronoUnit.DAYS)
或者
Instant.now().plus(1, ChronoUnit.DAYS).truncatedTo(ChronoUnit.DAYS)
我相信这让我到了今天的午夜。我只是延长这个
Instant.now().truncatedTo(ChronoUnit.DAYS).plus(1, ChronoUnit.DAYS).minus(7, ChronoUnit.HOURS);
或者有更好的方法来做到这一点。

最佳答案

应该是这样的

ZonedDateTime now = ZonedDateTime.now(ZoneOffset.UTC);
// this would be the today (might be in the past)
ZonedDateTime result = now.with(LocalTime.of(17, 0));
if (result.isBefore(now)) {
// This would be "next time it is 5 o-clock".
result = result.plusDays(1);
}
// if you really want an Instant out of it.
return result.toInstant();

关于java - 我怎样才能在UTC java中获得今天的具体时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48708963/

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