こんにちは、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;