所以我想存储此图片的网址
我正在搜索这个HTML代码:
/src/main/
通过
<link rel="image_src" href="http://ex.com/Data/CLOCK/fb.jpg">
上面的代码给出了html文档中包含大约30多个链接的所有链接。有没有办法让上面的特定链接?
由于
答案 0 :(得分:1)
您可以从Document
开始,并使用CSS
选择器:
String selector = "link[rel=image_src][href=http://ex.com/Data/CLOCK/fb.jpg]";
Element theElement = doc.select(selector).first();