有没有办法找到给定的URL是RSS提要还是使用Java的atom?

有没有办法找到给定的URL是RSS提要还是使用Java的atom?,java,rss,Java,Rss,我正在写一个RSS解析器。是否有任何方法可以使用Java找到给定URL是RSS还是atom?您可以使用(我建议首先)解析RSS和atom提要。或者,您必须使用SAX解析器或创建DOM树并执行以下操作: 对于RSS: 在RSS中,您必须检查是否存在RSS元素,并且它的子元素必须包含频道元素。RSS中可以有0个或多个项目(我可能错了) 例如: <?xml version="1.0" encoding="UTF-8" ?> <rss version="2.0"> <cha

我正在写一个RSS解析器。是否有任何方法可以使用Java找到给定URL是RSS还是atom?

您可以使用(我建议首先)解析RSS和atom提要。或者,您必须使用SAX解析器或创建DOM树并执行以下操作:

对于RSS:
在RSS中,您必须检查是否存在
RSS
元素,并且它的子元素必须包含
频道
元素。RSS中可以有0个或多个
项目
(我可能错了)

例如:

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
    <title>RSS Title</title>
    <description>This is an example of an RSS feed</description>
    <link>http://www.someexamplerssdomain.com/main.html</link>
    <lastBuildDate>Mon, 06 Sep 2010 00:01:00 +0000 </lastBuildDate>
    <pubDate>Mon, 06 Sep 2009 16:45:00 +0000 </pubDate>

    <item>
        <title>Example entry</title>
        <description>Here is some text containing an interesting description of the thing to be described.</description>
        <link>http://www.wikipedia.org/</link>
        <guid>unique string per item</guid>
        <pubDate>Mon, 06 Sep 2009 16:45:00 +0000 </pubDate>
    </item>

</channel>
</rss>
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">

    <title>Example Feed</title>
    <subtitle>A subtitle.</subtitle>
    <link href="http://example.org/feed/" rel="self" />
    <link href="http://example.org/" />
    <id>urn:uuid:60a76c80-d399-11d9-b91C-0003939e0af6</id>
    <updated>2003-12-13T18:30:02Z</updated>
    <author>
        <name>John Doe</name>
        <email>johndoe@example.com</email>
    </author>

    <entry>
        <title>Atom-Powered Robots Run Amok</title>
        <link href="http://example.org/2003/12/13/atom03" />
        <link rel="alternate" type="text/html" href="http://example.org/2003/12/13/atom03.html"/>
        <link rel="edit" href="http://example.org/2003/12/13/atom03/edit"/>
        <id>urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a</id>
        <updated>2003-12-13T18:30:02Z</updated>
        <summary>Some text.</summary>
    </entry>

</feed>
PS:我不知道您想要实现哪个RSS版本或Atom版本,但请遵循他们的指导原则