Web サイトの動的な特定のコンテンツを webview に読み込もうとしていますが、このコードを使用できません `public class MainActivity extends Activity {
// blog url
static final String BLOG_URL = "http://www.internationalnewscenter.com/";
@Override
public void onCreate(Bundle savedInstanceState) {
// set layout view
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// process
try {
((TextView)findViewById(R.id.textView1)).setText(getBlogStats());
} catch (Exception ex) {
((TextView)findViewById(R.id.textView1)).setText("Error");
}
}
protected String getBlogStats() throws Exception {
String result = "";
// get html document structure
Document document = Jsoup.connect(BLOG_URL).get();
// selector query
Elements nodeBlogStats = document.select("div#lofslidecontent45");
// check results
if(nodeBlogStats.size() > 0) {
// get value
result = nodeBlogStats.get(0).text();
}
// return
return result;
}
しかし、「エラー」が表示されます。誰かが私を助けるか、それを行うための完全な例へのリンクを教えてください