次のようなページから結果をリクエストしています。
String getURL = "http://www.example.com/search.php?q="+query;
HttpClient client = new DefaultHttpClient();
HttpGet get = new HttpGet(getURL);
HttpResponse responseGet = client.execute(get);
HttpEntity resEntityGet = responseGet.getEntity();
if (resEntityGet != null) {
String response = EntityUtils.toString(resEntityGet);
}
問題は、<results>
ページの div (<div>
検索結果を含む) が空であることです。JavaScript によって生成された結果が原因であることはわかっています。
- コードを修正して解決する方法はありますか?
- そうでない場合、バックエンドの動作方法を変更する以外に、それを行う別の方法はありますか?