从描述 RSS 标签获取图像
我在我的应用程序中获取 RSS 源。我想从描述标签中获取图像。
取出部分
href="http://1.bp.blogspot.com/-cK4XpGZFqrw/TlzZVDN29EI/AAAAAAAAIP4/HIPTiLxMHB8/s1600/empoou.jpg"
因此,从
<description><p><a href="http://feedads.g.doubleclick.net/~a/b4nArh9wvGYEh4cdSiHD3-Kk4CM/0/da"><img src="http://feedads.g.doubleclick.net/~a/b4nArh9wvGYEh4cdSiHD3-Kk4CM/0/di" border="0" ismap="true"></img></a><br/><ahref="http://feedads.g.doubleclick.net/~a/b4nArh9wvGYEh4cdSiHD3-k4CM/1/da"><imgsrc="http://feedads.g.doubleclick.net/~a/b4nArh9wvGYEh4cdSiHD3-Kk4CM/1/di" border="0" ismap="true"></img></a></p><a href="http://1.bp.blogspot.com/-cK4XpGZFqrw/TlzZVDN29EI/AAAAAAAAIP4/HIPTiLxMHB8/s1600/empoou.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 320px; height: 180px;" .............
我使用 sax 解析器加载 RSS 中 。有什么帮助获取图像吗?谢谢
I'm getting RSS feed in my app. I would like to get the image from the description tag.
So getting out the part
href="http://1.bp.blogspot.com/-cK4XpGZFqrw/TlzZVDN29EI/AAAAAAAAIP4/HIPTiLxMHB8/s1600/empoou.jpg"
from
<description><p><a href="http://feedads.g.doubleclick.net/~a/b4nArh9wvGYEh4cdSiHD3-Kk4CM/0/da"><img src="http://feedads.g.doubleclick.net/~a/b4nArh9wvGYEh4cdSiHD3-Kk4CM/0/di" border="0" ismap="true"></img></a><br/><ahref="http://feedads.g.doubleclick.net/~a/b4nArh9wvGYEh4cdSiHD3-k4CM/1/da"><imgsrc="http://feedads.g.doubleclick.net/~a/b4nArh9wvGYEh4cdSiHD3-Kk4CM/1/di" border="0" ismap="true"></img></a></p><a href="http://1.bp.blogspot.com/-cK4XpGZFqrw/TlzZVDN29EI/AAAAAAAAIP4/HIPTiLxMHB8/s1600/empoou.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 320px; height: 180px;" .............
I'm using sax parser to load the RSS. Any help to get the image? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
然后,当您获得图像的 URL 时,只需查看此示例:
以及完整教程:
http://asantoso.wordpress。 com/2008/03/07/download-and-view-image-from-the-web/
Then when you have the URL of the image, just see this example:
and full tutorial there:
http://asantoso.wordpress.com/2008/03/07/download-and-view-image-from-the-web/
使用这个 jsoup lib 首先获取 HTML 元素属性值的值
,然后需要执行 xml 解析,
doc.select( ) 如果有多个 img 元素,则返回多个 Element 对象,如果您想获取比第一个索引更多的 img 元素,请使用以下代码,
use this jsoup lib for get the value of HTML element attribute value
first, you need perform xml parsing then,
doc.select() is return multiple Element objects if there are more than one img elements, if you want to get img element more then 1st index then use following code,