嗨,我正在使用这个库进行 xml 解析http://simple.sourceforge.net/download/stream/doc/tutorial/tutorial.php#state
我怎样才能解析这样的文档?
<atom:link href="http://address.xml" rel="self" type="application/rss+xml" />
<link>http://address.com</link>
我不断收到“名称'链接'的重复注释”......我尝试过这种方式:
@Root
@NamespaceList({
@Namespace(reference="http://purl.org/rss/1.0/modules/content/", prefix="content"),
@Namespace(reference="http://wellformedweb.org/CommentAPI/", prefix="wfw"),
@Namespace(reference="http://purl.org/dc/elements/1.1/", prefix="dc"),
@Namespace(reference="http://www.w3.org/2005/Atom", prefix="atom"),
@Namespace(reference="http://purl.org/rss/1.0/modules/syndication/", prefix="sy"),
})
public class Rss {
@Element
private Channel channel;
我的元素:
@Element
private String link;
@Element(name="link")
@Namespace(reference="http://www.w3.org/2005/Atom")
private RssLink rssLink;