gpt4 book ai didi

java - 在kotlin中获取两个ISO格式时间之间的分钟数

转载 作者:行者123 更新时间:2023-12-02 10:12:22 27 4
gpt4 key购买 nike

我需要在 java/kotlin 中获取 ISO 格式日期之间的分钟数例子 :需要知道以下两个 iso 时间之间的分钟数

2019-02-18T06:37:00.000Z 2019-02-18T11:46:00.000Z

最佳答案

您可以使用Duration和 toMinutes() 方法:

ZonedDateTime dt1 = ZonedDateTime.parse("2019-02-18T06:37:00.000Z");
ZonedDateTime dt2 = ZonedDateTime.parse("2019-02-18T11:46:00.000Z");
System.out.println(Duration.between(dt1, dt2).toMinutes()); // 309

关于java - 在kotlin中获取两个ISO格式时间之间的分钟数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54909916/

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