C#通过WebClient,HttpWebRequest实现http的post和get方法

C#通过WebClient,HttpWebRequest实现http的post和get方法

ID:37914562

大小:36.00 KB

页数:4页

时间:2019-06-02

C#通过WebClient,HttpWebRequest实现http的post和get方法_第1页
C#通过WebClient,HttpWebRequest实现http的post和get方法_第2页
C#通过WebClient,HttpWebRequest实现http的post和get方法_第3页
C#通过WebClient,HttpWebRequest实现http的post和get方法_第4页
资源描述:

《C#通过WebClient,HttpWebRequest实现http的post和get方法》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、//body是要传递的参数,格式"roleId=1&uid=2"//post的cotentType填写://"application/x-www-form-urlencoded"//soap填写:"text/xml;charset=utf-8"publicstaticstringPostHttp(stringurl,stringbody,stringcontentType){HttpWebRequesthttpWebRequest=(HttpWebRequest)WebRequest.Create(ur

2、l);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);H

3、ttpWebResponsehttpWebResponse=(HttpWebResponse)httpWebRequest.GetResponse();StreamReaderstreamReader=newStreamReader(httpWebResponse.GetResponseStream());stringresponseContent=streamReader.ReadToEnd();httpWebResponse.Close();streamReader.Close();httpWebR

4、equest.Abort();httpWebResponse.Close();returnresponseContent;}POST方法(httpWebRequest)///

///通过WebClient类Post数据到远程地址,需要Basic认证;///调用端自己处理异常/////////name=张三&age=20///

5、ng">请先确认目标网页的编码方式/////////publicstaticstringRequest_WebClient(stringuri,stringparamStr,Encodingencoding,stringusername,stringpassword){if(encoding==null)encoding=Encod

6、ing.UTF8;stringresult=string.Empty;WebClientwc=newWebClient();//采取POST方式必须加的Headerwc.Headers.Add("Content-Type","application/x-www-form-urlencoded");byte[]postData=encoding.GetBytes(paramStr);if(!string.IsNullOrEmpty(username)&&!string.IsNullOrEmpty(pass

7、word)){wc.Credentials=GetCredentialCache(uri,username,password);wc.Headers.Add("Authorization",GetAuthorization(username,password));}byte[]responseData=wc.UploadData(uri,"POST",postData);//得到返回字符流returnencoding.GetString(responseData);//解码}POST方法(WebClie

8、nt)publicstaticstringGetHttp(stringurl,HttpContexthttpContext){stringqueryString="?";foreach(stringkeyinhttpContext.Request.QueryString.AllKeys){queryString+=key+"="+httpContext.Request.QueryString[key]+"&";}queryString=qu

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。