gpt4 book ai didi

java - 比较 System.currentTimeMillis()

转载 作者:行者123 更新时间:2023-12-01 16:51:49 24 4
gpt4 key购买 nike

我想使用 System.currentTimeMillis() 比较两个不同的时间戳。

基本上我想检查时间戳是否在特定日期的 3 小时范围内。

如何做到这一点?

最佳答案

考虑到您有time1time2 ,其中time1 <= time2你可以这样做:

if (time1 >= time2-(60*60*3*1000)) {
// interval is up to 3 hours
} else {
// interval is more than 3 hours
}

关于java - 比较 System.currentTimeMillis(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38813377/

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