程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 動態數據獲取-httpclient 動態網頁獲取

動態數據獲取-httpclient 動態網頁獲取

編輯:編程綜合問答
httpclient 動態網頁獲取

public static String getHtmlByUrl(String url){

String html = null;

HttpClient httpClient = new DefaultHttpClient();//創建httpClient對象

HttpGet httpget = new HttpGet(url);//以get方式請求該URL

try {

HttpResponse responce = httpClient.execute(httpget);//得到responce對象

int resStatu = responce.getStatusLine().getStatusCode();//返回碼

if (resStatu==HttpStatus.SC_OK) {//200正常 其他就不對

//獲得相應實體

HttpEntity entity = responce.getEntity();

System.out.println(Integer.toString(resStatu));
if (entity!=null) {

html = EntityUtils.toString(entity);//獲得html源代碼

}

}

} catch (Exception e) {

System.out.println("訪問【"+url+"】出現異常!");

e.printStackTrace();

} finally {

httpClient.getConnectionManager().shutdown();

}

   //System.out.println(html);
    return html;  
}  


    上述代碼只能抓靜態網頁數據
    麻煩看下上面代碼怎麼改才能獲取動態網頁數據啊 

最佳回答:


用法是一樣的,只不過如果有些顯示數據是由js生成的,就沒辦法

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved