gpt4 book ai didi

java - 使用 startTime 和 testDuration 计算 endTime

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

我有测试应该运行的测试开始时间(例如 9:05:30)和总持续时间(例如 5000 秒)。如何根据开始时间和结束时间计算结束时间?

最佳答案

如果您使用 Java 8 时间 API 中的 InstantZonedDateTimeLocalDateTime 之类的内容,则可以使用 plusSeconds :

Instant startTime = ...
Instant endTime = startTime.plusSeconds(5000);

如果您使用Date(哦,太恐怖了...),您可以简单地使用getTime:

Date startTime = ...
Date endTime = new Date(startTime.getTime() + TimeUnit.SECONDS.toMillis(5000));

关于java - 使用 startTime 和 testDuration 计算 endTime,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38378541/

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