简单的xml序列化程序 - 重复标记

时间:2014-03-17 07:57:06

标签: android xml xml-serialization

我正在使用Simple Xml序列化库http://simple.sourceforge.net/

我可以解析我的项目的各种Feed,除了一个有重复标记的Feed。可能是Web开发人员的错误。

我必须解析与此类似的东西:

<item>
 <name>
 <description>
 <location>
 <url>
 <location>
 <image>
</item>

这只是一个例子。在这种情况下,'location'标签是重复的。这会导致解析停止。有没有办法使用Simple库解析这个xml?

编辑: 我尝试像这样构建我的对象类,但它不起作用:

@Element(name="name")
private String name;

@Element(name="description")
private String description;

@Element(name="location")
private String location;

@Element(name="url")
private String ur;

@Element(name="location")
private String location2;

@Element(name="image")
private String image;

1 个答案:

答案 0 :(得分:1)

抱歉没有使用它..

但是通过查看示例和文档..

你可以尝试

item/location[1]

item/location[2]

每个人?