C# Post方式传输报文,和处理响应

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# Post方式传输报文,和处理响应相关的知识,希望对你有一定的参考价值。

 1   public string DoPost(string url, string data)
 2         {
 3             HttpWebRequest req = GetWebRequest(url, "POST");
 4             byte[] postData = Encoding.UTF8.GetBytes(data);
 5             Stream reqStream = req.GetRequestStream();
 6             reqStream.Write(postData, 0, postData.Length);
 7             reqStream.Close();
 8             HttpWebResponse rsp = (HttpWebResponse)req.GetResponse();
 9             Encoding encoding = Encoding.GetEncoding(rsp.CharacterSet);
10             return GetResponseAsString(rsp, encoding);
11         }
12 
13         public HttpWebRequest GetWebRequest(string url, string method)
14         {
15             HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
16             req.ServicePoint.Expect100Continue = false;
17             req.ContentType = "application/x-www-form-urlencoded;charset=utf-8";
18             req.ContentType = "text/json";
19             req.Method = method;
20             req.KeepAlive = true;
21             req.UserAgent = "mysoft";
22             req.Timeout = 1000000;
23             req.Proxy = null;
24             return req;
25         }
26 
27         public string GetResponseAsString(HttpWebResponse rsp, Encoding encoding)
28         {
29             StringBuilder result = new StringBuilder();
30             Stream stream = null;
31             StreamReader reader = null;
32             try
33             {
34                 // 以字符流的方式读取HTTP响应
35                 stream = rsp.GetResponseStream();
36                 reader = new StreamReader(stream, encoding);
37                 // 每次读取不大于256个字符,并写入字符串
38                 char[] buffer = new char[256];
39                 int readBytes = 0;
40                 while ((readBytes = reader.Read(buffer, 0, buffer.Length)) > 0)
41                 {
42                     result.Append(buffer, 0, readBytes);
43                 }
44             }
45             finally
46             {
47                 // 释放资源
48                 if (reader != null) reader.Close();
49                 if (stream != null) stream.Close();
50                 if (rsp != null) rsp.Close();
51             }
52 
53             return result.ToString();
54         }

 

以上是关于C# Post方式传输报文,和处理响应的主要内容,如果未能解决你的问题,请参考以下文章

web安全入门-http请求报文

9. http协议_响应状态码_页面渲染流程_路由_中间件

如何获取HTTP请求响应问号

PHP-02.文件上传php保存/转移上传的文件常见的网络传输协议请求报文及属性响应报文及属性

HTTP协议

http---ajax