如何在Android中使用Jsoup访问元素

时间:2013-08-14 09:56:04

标签: android html jsoup

!我需要在android中提取这个元素 - 我如何使用Jsoup ...请帮助 我试过用 this

<table cellspacing="0" cellpadding="0" style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;"><tbody><tr><td align="left" style="vertical-align: top;"><div class="gwt-Tree" style="position: relative;" role="tree"><div tabindex="0" style="font-size: 0px; position: absolute; outline: 0px none; z-index: -1; left: 39px; top: 28px; width: 66px; height: 20px;" hidefocus="true" role="treeitem" aria-activedescendant="gwt-uid-9"> … </div><div style="padding: 0px; margin-left: 0px;"><table style="white-space: nowrap;"><tbody><tr><td style="vertical-align: middle;"> … </td><td style="vertical-align: middle;">**<div id="gwt-uid-8" class="gwt-TreeItem" style="display: inline;" role="treeitem">

网站 - 我需要提取此元素

  </div>**</td></tr></tbody></table><div style="white-space: nowrap;"> … </div></div></div></td></tr></tbody></table>

Element Stats = document.select("div > td").first();
Elements nodeBlogStats = Stats.select("div[id = gwt-uid-8]");

1 个答案:

答案 0 :(得分:0)

TRY

String Stats= document.select("div #gwt-uid-8").attr("style");