java:查找网站的RSS文件
我正在编写一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 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 thehref
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/