我正在使用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;
答案 0 :(得分:1)
抱歉没有使用它..
但是通过查看示例和文档..
你可以尝试
item/location[1]
和
item/location[2]
每个人?