gpt4 book ai didi

java - 两个时间戳之间的天数

转载 作者:行者123 更新时间:2023-12-01 17:47:08 24 4
gpt4 key购买 nike

我有两个时间戳值。喜欢

Timestamp date1;
Timestamp date2;

现在我想找到没有。这两个时间戳之间的天数,就像在 java 中

int no_of_days = difference(date2 - date1)

以上代码只是为了澄清问题。只需忽略编码错误即可。

最佳答案

您可以使用Duration(它适用于java 8):

Duration between = Duration.between(date1.toInstant(), date2.toInstant());

int no_of_days = between.get(ChronoUnit.DAYS);

关于java - 两个时间戳之间的天数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53947890/

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