java:查找网站的RSS文件

发布于 2024-12-07 03:55:15 字数 367 浏览 0 评论 0原文

我正在编写一个java应用程序;使用 Rome lib 读取网站 RSS 文件的 RSS 提要。我可以使用 Rome 读取和管理提要,但找不到 RSS 文件的确切 URL 路径。我知道 html 文件中有这样一行指定 RSS xml 文件 url:

在 java 中查找 RSS 文件、url 路径的干净方法是什么?

谢谢大家

I am writing a java application; using Rome lib for reading RSS feeds of a RSS file of a website. I can read and manage feeds using Rome but I can not find the exact URL path of RSS file. I know there is a line like this in html file specifying the RSS xml file url:

<link rel="alternate" type="application/rss+xml" href="/rss.ashx" title="Rss feed for yourdomain.com" />

what is a clean way to find RSS file, url path in java?

thank you all

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

记忆消瘦 2024-12-14 03:55:15

您可以在 html 页面上使用 xpath 表达式来获取 -Node 并提取 href 属性。开箱即用,这仅适用于格式良好的 XHTML 页面。也许您需要在应用 xpath 之前修复文档。

或者您使用类似 http://jsoup.org/

You could use a xpath expression on the html page to get the <link />-Node and extract the href attribute. Out of the box this will only work on wellformed XHTML pages. Maybe you need to fix the document before applying the xpath.

Or you use something like http://jsoup.org/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文