我使用JSOUP从我的应用中的网址获取一些文字。大多数时候它的工作正常,但有些时候它不起作用。就像我退出应用程序并重新打开它然后它工作,有时不。
try {
Document document = Jsoup
.connect(url)
.userAgent(
"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko/20100101 Firefox/25.0")
.get();
Elements myin = null;
myin = document.select("div.fontdef1");
desc = myin.text().toString();
} catch (IOException e) {
e.printStackTrace();
}
我使用的网址与每个案例的url=http://www..abc.com/"+data+"/
,String data
更改类似。
有没有人有任何想法?