Zdravím,
snažím se napsat program, který by mi stáhnul data z internetu, ale nefunguje.
public String getInternetData() throws Exception{
BufferedReader in = null;
String data = null;
try{
HttpClient client = new DefaultHttpClient();
URI website = new URI("http://www.google.com");
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(IOException e){
e.printStackTrace();
}
}
else{
}
}
}
Nevím proč, ale myslím si, že chyba je někde v
response = client.execute(request);
Neví si s tím někdo rady, dík za pomoc