gpt4 book ai didi

json - 应为 BEGIN_OBJECT 但实际为 NUMBER

转载 作者:行者123 更新时间:2023-12-04 00:12:17 26 4
gpt4 key购买 nike

我收到这个 json 作为来自休息服务器的响应:

{  
"externalOrderId":"5cb9bc46-aaa3-43ff-bb1a-6b17443f63ea",
"shortId":null,
"createdAt":1442255497402,
"updatedAt":1442255497402,
"cart":{
"id":"gy4ectxb3db84epljzhisqrf"
}
}

然后,当我尝试使用 gson.fromJson 解析此 json 时,出现错误:

java.lang.IllegalStateException: Expected BEGIN_OBJECT but was NUMBER at line 1 column 201 path $.createdAt

这是我的做法:

public Order getOrder(String externalOrderId) throws Exception {
HttpRequest request = new HttpRequestBuilder()
.setUrl(new URI(baseURL + "/order/" + externalOrderId))
.build();

return gson.fromJson(HttpResource.getInstance().get(request).getBody(), new TypeToken<Order>(){}.getType());
}

订单对象:

private String externalOrderId;
private Long shortId;
private Date createdAt;
private Date updatedAt;

提前致谢。

最佳答案

您的 createdAtupdatedAt 字段是 Date 对象,而 JSON 数据有数字。为了能够与数字匹配,您需要让 createdAtupdatedAt 也是 Long 并将它们转换为 日期 objects later.

关于json - 应为 BEGIN_OBJECT 但实际为 NUMBER,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32728558/

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