httpclient http = new httpclient(); //建立httpclient例項,類似於開啟瀏覽器
getmethod get = new getmethod("www.baidu.com"); //建立get方法的例項,類似於在瀏覽器位址列,輸入url
get.getparams().setparameter(httpmethodparams.retry_handler,new defaulthttpmethodretryhandler());//使用系統預設的恢復策略
get.getparams().setparameter(httpmethodparams.so_timeout, 10*1000); //設定超時時間
//設定超時時間 (可選)
string result = "";
try else";
}} catch (exception e) ";
} finally
}
請求行,請求頭,請求體
1.請求報文 請求行 請求頭 請求資料 空行 請求行求方法字段 url欄位和http協議版本 例如 get index.html http 1.1 get方法將資料拼接在url後面,傳遞引數受限 請求方法 get post head put delete options trace connect ...
請求行 請求頭 請求體
請求行 是請求方法,get和post是最常見的http方法,除此以外還包括delete head options put trace。為請求對應的url位址,它和報文頭的host屬性組成完整的請求url。是協議名稱及版本號。請求頭 是http的報文頭,報文頭包含若干個屬性,格式為 屬性名 屬性值 服...
請求行 請求頭與請求體
請求行 請求頭與請求體可以通過httpwatch檢視 請求行,則為第一行,其中包括 get或post url http版本 注意 url的資訊必須是已經urlencoded編碼後的 瀏覽器不會自動編碼 否則將不符合要求,如 中文 請求頭,則第二行之後的資訊,可以在 httpconext.reques...