



全文預(yù)覽已結(jié)束
下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
/body是要傳遞的參數(shù),格式roleId=1&uid=2/post的cotentType填寫:/application/x-www-form-urlencoded/soap填寫:text/xml; charset=utf-8 public static string PostHttp(string url, string body, string contentType) HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(url); httpWebRequest.ContentType = contentType; httpWebRequest.Method = POST; httpWebRequest.Timeout = 20000; byte btBodys = Encoding.UTF8.GetBytes(body); httpWebRequest.ContentLength = btBodys.Length; httpWebRequest.GetRequestStream().Write(btBodys, 0, btBodys.Length); HttpWebResponse httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse(); StreamReader streamReader = new StreamReader(httpWebResponse.GetResponseStream(); string responseContent = streamReader.ReadToEnd(); httpWebResponse.Close(); streamReader.Close(); httpWebRequest.Abort(); httpWebResponse.Close(); return responseContent; POST方法(httpWebRequest)/ / 通過WebClient類Post數(shù)據(jù)到遠(yuǎn)程地址,需要Basic認(rèn)證; / 調(diào)用端自己處理異常 / / / name=張三&age=20 / 請先確認(rèn)目標(biāo)網(wǎng)頁的編碼方式 / / / public static string Request_WebClient(string uri, string paramStr, Encoding encoding, string username, string password) if (encoding = null) encoding = Encoding.UTF8; string result = string.Empty; WebClient wc = new WebClient(); / 采取POST方式必須加的Header wc.Headers.Add(Content-Type, application/x-www-form-urlencoded); byte postData = encoding.GetBytes(paramStr); if (!string.IsNullOrEmpty(username) & !string.IsNullOrEmpty(password) wc.Credentials = GetCredentialCache(uri, username, password); wc.Headers.Add(Authorization, GetAuthorization(username, password); byte responseData = wc.UploadData(uri, POST, postData); / 得到返回字符流 return encoding.GetString(responseData);/ 解碼 POST方法(WebClient)public static string GetHttp(string url, HttpContext httpContext) string queryString = ?; foreach (string key in httpContext.Request.QueryString.AllKeys) queryString += key + = + httpContext.Request.QueryStringkey + &; queryString = queryString.Substring(0, queryString.Length - 1); HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(url + queryString); httpWebRequest.ContentType = application/json; httpWebRequest.Method = GET; httpWebRequest.Timeout = 20000; /byte btBodys = Encoding.UTF8.GetBytes(body); /httpWebRequest.ContentLength = btBodys.Length; /httpWebRequest.GetRequestStream().Write(btBodys, 0, btBodys.Length); HttpWebResponse httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse(); StreamReader streamReader = new StreamReader(httpWebResponse.GetResponseStream(); string responseContent = streamReader.ReadToEnd(); httpWebResponse.Close(); streamReader.Close(); return responseContent; Get方法(HttpWebRequest)/ / 通過 WebRequest/WebResponse 類訪問遠(yuǎn)程地址并返回結(jié)果,需要Basic認(rèn)證; / 調(diào)用端自己處理異常 / / / 訪問超時時間,單位毫秒;如果不設(shè)置超時時間,傳入0 / 如果不知道具體的編碼,傳入null / / / public static string Request_WebRequest(string uri, int timeout, Encoding encoding, string username, string password) string result = string.Empty; WebRequest request = WebRequest.Create(new Uri(uri); if (!string.IsNullOrEmpty(username) & !string.IsNullOrEmpty(password) request.Credentials = GetCredentialCache(uri, username, password); request.Headers.Add(Authorization, GetAuthorization(username, password); if (timeout 0) request.Timeout = timeout; WebResponse response = request.GetResponse(); Stream stream = response.GetResponseStream(); StreamReader sr = encoding = null ? new StreamReader(stream) : new StreamReader(stream, encoding); result = sr.ReadToEnd(); sr.Close(); stream.Close(); return result; #region # 生成 Http Basic 訪問憑證 # private static CredentialCache GetCredentialCache(string uri, string username, string password) string authorization = string.Format(0:1, username, password); CredentialCache credCache = new CredentialCache(); credCache.Add(new Uri(uri), Basic, new NetworkCredential(username, password); return credCache; private static string GetAuthorization(string username, s
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 餐飲品牌授權(quán)保密條款及競業(yè)禁止協(xié)議
- 企業(yè)財務(wù)顧問與財務(wù)培訓(xùn)服務(wù)協(xié)議
- 財務(wù)人員離職保密協(xié)議及財務(wù)軟件使用限制合同
- 債務(wù)清償協(xié)議書范本
- 深度參與式股權(quán)投資合作協(xié)議范本
- 家庭飲品分包協(xié)議書范本
- 食品安全責(zé)任險承保下的采購協(xié)議
- 環(huán)保產(chǎn)業(yè)項目貸款合同范本:綠色金融創(chuàng)新
- 春節(jié)節(jié)后新年復(fù)工專題培訓(xùn)
- 急性腸胃炎的急救護(hù)理
- 環(huán)保相關(guān)知識培訓(xùn)課件
- 2025年河北高考真題化學(xué)試題+解析(參考版)
- 護(hù)理事業(yè)十五五發(fā)展規(guī)劃(2026-2030)
- 2025至2030中國中藥材種植行業(yè)運(yùn)作模式與競爭格局分析報告
- 武漢大學(xué)2020年強(qiáng)基計劃物理試題(原卷版)
- 2025年隨州國投集團(tuán)公開招聘42名工作人員筆試參考題庫附帶答案詳解
- 2025年3月10日吉林省紀(jì)委監(jiān)察廳遴選面試真題及解析
- 2025年 內(nèi)蒙古能源集團(tuán)所屬單位招聘考試筆試試題(含答案)
- 2025年“安康杯”安全知識競賽題庫(含答案)
- 2025年江西省高考物理真題
- CJ/T 463-2014薄壁不銹鋼承插壓合式管件
評論
0/150
提交評論