Google Play页面上的Jsoup查询

时间:2015-03-27 13:36:08

标签: google-play jsoup

我尝试使用Jsoup从典型的Google App页面中的“权限详细信息”页面中提取文本。例如,此网址的权限详细信息。 https://play.google.com/store/apps/details?id=com.imangi.templerun

enter image description here

enter image description here

我对JSoup不是很精通,所以我不确定我应该针对哪些元素来达到效果。我尝试过以下方法:

Elements permission= doc.getElementsByAttributeValueContaining("class", "permission-bucket");

for(Element p :permission)
{
try{
 p.select("span[class=bucket-title]").text();
 }
catch (Exception e)
{
tv.setText("Error in reading & storing permissions: " + e.getMessage());
}

但它抛出了空。有什么帮助吗?

0 个答案:

没有答案