我想用richtext來顯示html內容,所以我解析了url嘗試獲取<div class="margin-box"></div>
中的所有內容爲String值。 但我無法解析網址。 代碼象下面這樣:Android使用JSoup解析HTML轉換爲字符串
用戶湯解析URL
Document document = Jsoup.parse(news_url);
String news_content = CommonUtil.newsContent(document);
數據捕獲
public static String newsContent(Document document){
Elements elements = document.select("div.margin-box");
String newsContent = elements.toString();
return newsContent;
}
顯示URL解析不成功。 其實我想要得到像下面的值:
<div>
<p>
<imgsrc="http://p1.pstatp.com/large/1c67000332373537f0ff" img_width="640" img_height="360" inline="0" alt=「************」 onerror="javascript:errorimg.call(this);">
</p>
<p class="pgc-img-caption」>***********</p><p>*************************************</p>
<p><imgsrc="http://p3.pstatp.com/large/1c6e0000841ab42ca326" img_width="640" img_height="425" inline="0" alt=「**********」onerror="javascript:errorimg.call(this);"></p>
<p class="pgc-img-caption」>********************************</p>
<p><img src="http://p1.pstatp.com/large/1c6d00008eebccce3e2f" img_width="550" img_height="375" inline="0" alt=「************」 onerror="javascript:errorimg.call(this);"></p>
<p class="pgc-img-caption」>*********</p><p>**************************</p><p>*********************</p><p>*****************</p></div>
我做了什麼錯?
您可以發佈網址或完整的html塊嗎? –
好吧,我會編輯和添加完整的html塊 –
@ProkashSarkari已添加完整的html塊 –