你好,对不起我的英语不好。看看我试图解析的 XML:
<author>
<name>Name</name>
<y:link href="http://api-yaru.yandex.ru/person/20623655/" rel="self"/>
<y:link href="http://upics.yandex.net/20623655/normal" rel="userpic"/>
</author>
SimpleXML 代码如下所示:
public class Author_feed {
@Element
private String name;
@ElementList(inline = true)
@Namespace (prefix = "y")
private List<Link_feed> link;
}
但是我看到一个错误:
元素“链接”已被使用...[并指向第二个“链接”行]
我该怎么办?