2

我目前正在学习如何在 android 中使用 Jaxb 解析 xml 文件。但我不知道代码中有什么问题,以及在哪里以及如何纠正它。我无法解析 xml 并获取食品列表。如果我删除 List 并将其简单地写为 Food 那么只有 xml 中的最后一个元素被解析,其余的似乎被覆盖了。请帮我。

我正在尝试解析http://www.w3schools.com/xml/simple.xml,到目前为止我有这个代码:

---- 解组 XML 的代码

URL url = new URL("http://www.w3schools.com/xml/simple.xml");
InputSource is = new InputSource(url.openStream());
is.setEncoding("ISO-8859-1");
JAXBContext jaxbContext = JAXBContext.newInstance(BreakfastMenu.class);
Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller();
BreakfastMenu menu = (BreakfastMenu)jaxbUnmarshaller.unmarshal(is);

----- 课程如下 ----- Breakfast.java

@XmlRootElement(name="breakfast_menu")
public class BreakfastMenu {
private List<Food> food = new ArrayList<Food>();

public List<Food> getFood() {
    return food;
}

@XmlElement(name="food")
public void setFood(List<Food> food) {
this.food = food;
}

}

--- 食品类

@XmlRootElement(name="food")
public class Food {
private String name;
private String description;
private String calories;

public String getName() {
return name;
}

@XmlElement
public void setName(String name) {
    this.name = name;
}

// 描述和卡路里相同

PS:我也试过这个链接 谢谢。

4

1 回答 1

8

解决问题的感觉很棒。对于可能最终面临同样问题的其他人:这是解决方案:

我将 BreakfastMenu.class 更改为

@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name="breakfast_menu")
public class BreakfastMenu {


@XmlElement(name="food", type=Food.class)
private List<Food> food  = new ArrayList<Food>();

public List<Food> getFood() {
    return food;
}

public void setFood(List<Food> food) {
this.food = food;
}
}

在 Food.class 中,我删除了 @XMLElement 注释,并添加了以下内容:

@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name="food")
public class Food {
    // the other declarations remain
}
于 2013-10-06T09:09:31.680 回答