作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 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/
我正在使用 Google API,我需要将分钟添加到 EventDateTime 并以 DateTime 格式发回。 req.setTimeMin(start.getDateTime()); star
我是一名优秀的程序员,十分优秀!