浅析C#HTTPRequest请求程序模拟

C# HTTP Request请求程序模拟是如何实现的呢?我们在实现发送请求的操作是会用到哪些方法呢?那么下面我们来看看具体的实现方法,使用下面的代码片段时,记得 在程序的引用上右键,然后添加引用,添加 System.Web. 就可以使用下面的代码了.

C# HTTP Request请求程序模拟实例

 
 
 
  1. using System.Net;  
  2. using System.IO;  
  3. using System.Web;  
  4.  
  5. /********************  
  6. *C# HTTP Request请求程序模拟***  
  7.  * 向服务器送出请求  
  8.  * */ 
  9. public string SendRequest(string param)  
  10. {  
  11. ASCIIEncoding encoding = new ASCIIEncoding();  
  12. byte[] data = encoding.GetBytes(param);  
  13. HttpWebRequest request =   
  14. (HttpWebRequest)HttpWebRequest.Create(this.url);  
  15. request.Method = "POST";  
  16. request.ContentType = "application/x-www-form-urlencoded";  
  17. request.ContentLength = data.Length;  
  18. Stream sm = request.GetRequestStream();  
  19. sm.Write(data, 0, data.Length);  
  20. sm.Close();  
  21.  
  22. HttpWebResponse response =   
  23. (HttpWebResponse)request.GetResponse();  
  24.  
  25. if (response.StatusCode.ToString() != "OK")  
  26. {  
  27. MessageBox.Show(response.StatusDescription.ToString());  
  28. return "";  
  29. }  
  30.  
  31. StreamReader myreader = new StreamReader(  
  32. response.GetResponseStream(), Encoding.UTF8);  
  33. string responseText = myreader.ReadToEnd();  
  34. return responseText;  
  35. }  
  36. /**C# HTTP Request请求程序模拟  
  37.  * 进行UTF-8的URL编码转换(针对汉字参数)  
  38.  * */ 
  39. public string EncodeConver(string instring)  
  40. {  
  41. return HttpUtility.UrlEncode(instring, Encoding.UTF8);  
  42. }  
  43. /**C# HTTP Request请求程序模拟  
  44.  * 进行登录操作并返回相应结果  
  45.  * */ 
  46. public bool DoLogin(string username,   
  47. string password)  
  48. {  
  49. password = System.Web.Security.FormsAuthentication.  
  50. HashPasswordForStoringInConfigFile(password, "MD5");  
  51. string param = string.Format("do=login&u={0}&p={1}",  
  52.  this.EncodeConver(username), this.EncodeConver(password));  
  53. string result = this.SendRequest(param);  
  54. // MessageBox.Show(result); 解析 Result ,我这里是作为一个XML Document来解析的  
  55. return true;  
  56. }  

C# HTTP Request请求程序模拟的基本内容就向你介绍到这里,希望对你了解和学习C# HTTP Request请求程序模拟有所帮助。

当前题目:浅析C#HTTPRequest请求程序模拟
新闻来源:http://www.csdahua.cn/qtweb/news0/392750.html

网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网