我想要解析HTML頁面以獲取first.jpg鏈接,並將其鏈接設置爲WebView,以便查看應用程序上的圖像。我使用AsyncTask。它似乎工作,但我遇到了Try塊的異常。在LogCat上它只顯示ERROR PARSING ERROR(你可以看到,這就是我在Catch組中選擇的方式)。但沒有解釋導致異常的原因。代碼如下:HTML使用Jsoup解析,獲取異常
@Override
protected String doInBackground(String... params) {
TextView prova = (TextView)findViewById(R.id.searchedName);
Document doc;
try {
doc = Jsoup.connect("[url]http://www.lolking.net/summoner/euw/42997801")
.userAgent("Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.172 Safari/537.22")
.timeout(3000).get();
String icon = doc.select("img[src$=.jpg]").first().text();
WebView summonerIcon = (WebView)findViewById(R.id.webView1);
summonerIcon.loadUrl(icon);
} catch (Exception e) {
Log.e("ERROR", "PARSING ERROR");
}
return null;
}
e.printStackTrace();在catch塊會給你更多的細節 – upog
除了發佈的答案你也在更新uo doInbackground這是錯誤的。在onPostexecute中執行 – Raghunandan
'但是沒有解釋什麼導致異常,因爲你沒有登錄。 – njzk2