在我的應用程序中,我從公共URL發出請求,然後打開網頁的源代碼,最後,我從源代碼中提取我想要的信息。我在整個過程中沒有問題。但是,加載我想要的信息需要很長時間。有沒有其他有效的方法可以做?如何更有效地從互聯網獲取數據?
public class GetMethodEx {
public String getInternetData(String currentUrl) throws Exception{
BufferedReader in = null;
String data = null;
try{
HttpClient client = new DefaultHttpClient();
URI website = new URI(currentUrl);
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();
}
}
}
}
}
你從哪個網站獲取數據。 THey可能有一個API,可以用來顯着加快此過程。 – 2012-07-24 15:10:14