2016-08-30 46 views
-1

我需要閱讀alt屬性與jsoup庫? 例如:如何閱讀使用jsoup的鏈接內的圖像「alt」屬性?

<a href="www.test.com"> 
    <img src="http://test.org/images/icon/socialNetwork/telegram-icon.png" border="0" alt="telegram"/> 
</a> 

如何讀取它?

+0

我注意到,您的HTML是不正確'

+1

參見:http://stackoverflow.com/questions/18634215/jsoup-find-all-images-in-html-file -with - 交替 - 屬性 – willome

回答

0

下面的代碼片段,它讀取所有的圖像標籤的alt屬性:

String html = "<a href=\"www.test.com\"> <img src=\"http://test.org/images/icon/socialNetwork/telegram-icon.png\" border=\"0\" alt=\"telegram\"></img>"; 
Document document = Jsoup.parse(html); 
Elements elements = document.getElementsByTag("img"); 
for (Element e : elements) { 
    String alt = e.attr("alt"); 
    System.out.println("alt: " + alt); 
}