gpt4 book ai didi

java - 如何使用 Spring Boot 在 json 对象中表示日历日期

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

我有以下 json 对象:

{
"username":"test",
"customerName":"test",
"accessReasons":"tes",
"leaseHours":"8"
}

这表示某个用户必须执行某个任务的时间(即 sysdate + LeaseHours)

在我的 Controller 上,我使用在该 json 中收到的信息创建一个对象:

thatObject obj=new thatObject (jsonObjectFromPostBody)

通过这样做,可以这样创建 thatObject 的实例:

public thatObject(thatObject aci) {
this.username=aci.getUsername();
this.customerName=aci.getCustomerName();
this.accessReasons=aci.getAccessReasons();
this.beginDate= new GregorianCalendar();
long sum=beginDate.getTimeInMillis()+aci.getLeaseHours().getTimeInMillis();
this.endDate=(Calendar)beginDate.clone();
this.endDate.setTimeInMillis(sum);
}

如您所见,我的 endDate 是初始日期 + 用户有权 Activity 的时间(在本例中为 8 小时)

但我的问题是我正在使用日历,我无法在我的 json 对象上表示这 8 小时,所以当我计算 endTime 时它将是 0,我如何在我的 json 上表示这 8 小时或将这 8 小时相加到我的 beginDate 变量?

最佳答案

为什么不直接将 thatObject 中的 leaseHours 属性类型更改为 Integer 呢?在这种情况下,你可以这样做:

long sum=beginDate.getTimeInMillis() + aci * 60 * 60 * 1000;

关于java - 如何使用 Spring Boot 在 json 对象中表示日历日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55938813/

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