gpt4 book ai didi

java - 如何将分钟添加到 EventdateTime 并转换为 DateTime

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

我正在使用 Google API,我需要将分钟添加到 EventDateTime 并以 DateTime 格式发回。

req.setTimeMin(start.getDateTime());

start 是一个 EventDateTime,我可以使用 getDateTime 将它转换为 Datetime。

但我不能DateTime end = start.getDateTime().plusMinutes(30)

我做错了什么?

最佳答案

您可以通过使用以毫秒为单位的值来实现:

import com.google.api.client.util.DateTime;
import com.google.api.services.calendar.model.EventDateTime;

...

DateTime end = new DateTime(start.getDateTime().getValue() + 30L * 60L * 1000L);

关于java - 如何将分钟添加到 EventdateTime 并转换为 DateTime,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56240723/

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