



全文預(yù)覽已結(jié)束
下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quá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ù)到遠程地址,需要Basic認證; / 調(diào)用端自己處理異常 / / / name=張三&age=20 / 請先確認目標網(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 類訪問遠程地址并返回結(jié)果,需要Basic認證; / 調(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)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 非遺背景下河南通許女紅類方言詞匯調(diào)查研究
- 宮頸癌的主要護理診斷
- S71200通信與故障診斷
- 小班心理健康:高興的時候
- 露營設(shè)計方案規(guī)劃與實施
- 幼兒園生活常規(guī)教育課件
- 農(nóng)村健康科普超聲
- 頸椎肩周中醫(yī)課件
- 頸椎與腦部健康課件圖片
- 物業(yè)安保消防培訓
- 護理事業(yè)十五五發(fā)展規(guī)劃(2026-2030)
- GB/T 12008.2-2010塑料聚醚多元醇第2部分:規(guī)格
- 《一粒種子》課件
- 弘揚錢學森精神PPT忠誠擔當踐行科學報國之志PPT課件(帶內(nèi)容)
- 上半年我國經(jīng)濟形勢分析與公司應(yīng)對策略
- 小學語文人教五年級下冊(統(tǒng)編)第六單元-15、自相矛盾學歷案
- 中國教育學會會員申請表
- 黃大年式教師團隊申報
- 新冀人版小學科學三年級下冊全冊教案(2022年春修訂)
- 工作場所空氣中有害物質(zhì)監(jiān)測的采樣規(guī)范
- 國家開放大學電大《可編程控制器應(yīng)用》機考2套真題題庫及答案10
評論
0/150
提交評論