gpt4 book ai didi

java - 无法解析复杂类型的属性

转载 作者:行者123 更新时间:2023-12-01 06:15:56 24 4
gpt4 key购买 nike

我正在使用 eBay 的查找服务,除了解析 unitPrice 之外,一切正常。它说here :

eBay uses the UnitType and UnitQuantity

所以在我的 UnitPriceInfo.java 中我有这个:

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UnitPriceInfo", propOrder = { "type", "quantity", "any" })
public class UnitPriceInfo
{
@XmlElement(name = "UnitType")
protected String type;
@XmlElement(name = "UnitQuantity")
protected Double quantity;
@XmlAnyElement(lax = true)
protected List<Object> any;

但是,UnitPriceInfo 对象仍然被实例化,但它们的类型和数量字段始终为空。

我需要将类型从 String 和 Double 更改为 UnitTypeUnitQuantity 吗?如果没有,问题出在哪里?

最佳答案

这些元素被命名为typequantity,如下所示:

  <unitPrice>
<quantity> double </quantity>
<type> string </type>
</unitPrice>

您应该将注释更改为 @XmlElement(name="type")@XmlElement(name="quantity")

关于java - 无法解析复杂类型的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24888135/

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