3

嗨,我正在使用这个库进行 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;
4

1 回答 1

0

你在定义命名空间吗?

在 XML 中通过设置属性来完成xmlns:atom="any://unique/url/here";设置它的最佳位置是所有子元素共有的父元素 - 通常是根元素。

在您的库中,请参阅相关文档

于 2012-09-02T00:34:11.313 回答