我正在使用Jsoup从表格单元格中提取文本。但我得到null
错误。我想在每个<p>
的{{1}}内找到该文字。我该怎么做?
<td>
HTML:
Document doc = Jsoup.connect("URL").get(); //this is where Null error is thrown - but the URL is valid
Element table = doc.select("table").first();
Iterator<Element> iterator = table.select("td").iterator();
while(iterator.hasNext())
{
Log.e("CellText", iterator.next().text());
}
答案 0 :(得分:1)
在一个简单的java项目中测试你的代码 - &gt;作品
http://
开头?AsyncTask
?答案 1 :(得分:0)
我将代码放在AsyncTask中,现在可以正常工作。