jsoup ライブラリを使用して、この ajax Web ページからすべてのテキスト コンテンツを取得するにはどうすればよいですか。
私はこれまでにこれを試しました:
String result="";
Document doc=JSoup.connect("http://www.islamicuniversity.edu.in/Descrip? date=SELID1").get();
Elements allElements=doc.select("#latest_header");
for(Element looper:allElements){
result=looper.text();
}