ウェブサイトから html コードを取得し、コードを調べて画像を探す必要があるアプリを作成しようとしています。私が今いる場所では、エミュレーターに html コードが返されますが、コンピューターで Web サイトのソース コードを開いたときに得られるコードは異なります。
public String getInternetData(String adresse) throws Exception{
BufferedReader in = null;
String data = null;
try{
HttpClient client = new DefaultHttpClient();
URI website = new URI(adresse);
HttpGet request = new HttpGet();
request.setURI(website);
HttpResponse response = client.execute(request);
in = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
StringBuffer sb = new StringBuffer("");
String l = "";
String nl = System.getProperty("line.separator");
while ((l = in.readLine()) !=null){
sb.append(l + nl);
}
in.close();
data = sb.toString();
return data;
}finally{
if (in != null){
try{
in.close();
return data;
}catch (Exception e){
e.printStackTrace();
}
}
}
}
エミュレーターで取得したコードは、JavaScript の有効化と必須の Cookie に関する何かで終わります。これが私の問題である場合、どうすれば解決できますか?
どんな助けでも大歓迎です!