【C#】利用HttpWebRequest,Stream,HttpWebResponse,StreamReader获取post返回的数据

1、 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net;
using System.IO;
 
namespace TestCon
{
    static class InfoGeter
    {
        //静态方法传递两个参数,Post_String是单纯的链接,Post_Data是post的参数用以请求
        public static string Info_Geter_Post_Get(string Post_String,string Post_Data) {
            try {
                string s_Connection_String = Post_String;
 
                //实例化一个HttpWebrequst对象
                HttpWebRequest Info_Request = (HttpWebRequest)WebRequest.Create(s_Connection_String);
 
                //设置Requst的模式
                Info_Request.Method = "POST";
 
                //设置Content-Type Http标头的值,该值为默认值
                Info_Request.ContentType = "application/x-www-form-urlencoded";
                
                //预设响应等待时间
                Info_Request.Timeout = 20000;
                
                //建立一个Stream对象来写入Requst请求的参数流内涵url和key值等
                Stream Info_Stream = Info_Request.GetRequestStream();
 
                //调用Write方法第一个参数是获取传递参数的值得类型,第二个是流起始位置,第三个参数指流的长度
                Info_Stream.Write(Encoding.UTF8.GetBytes(Post_Data), 0, Encoding.UTF8.GetBytes(Post_Data).Length);
    
                //实例化一个HttpWebResponse用GetResponse方法用以获取服务器返回的响应
                HttpWebResponse Info_Response = (HttpWebResponse)Info_Request.GetResponse();
    
                //实例化一个StreamReader对象来获取Response的GetResponseStream返回的响应的体
                StreamReader Info_Reader = new StreamReader(Info_Response.GetResponseStream(), Encoding.UTF8); 
                
                return Info_Reader.ReadToEnd()+"";
            }
            catch (System.Exception ex) {
                Console.WriteLine(ex);
                Console.ReadLine();
                return "";
            }
        }
    }
}

2、https://blog.csdn.net/shujudeliu/article/details/40818653


        /// <summary>
        /// 获取url的返回值
        /// </summary>
        /// <param name="url">eg:http://m.weather.com.cn/atad/101010100.html </param>
        public string GetInfo(string url)
        {
            string strBuff = "";
            Uri httpURL = new Uri(url);
            ///HttpWebRequest类继承于WebRequest,并没有自己的构造函数,需通过WebRequest的Creat方法 建立,并进行强制的类型转换 
            HttpWebRequest httpReq = (HttpWebRequest)WebRequest.Create(httpURL);
            ///通过HttpWebRequest的GetResponse()方法建立HttpWebResponse,强制类型转换 
            HttpWebResponse httpResp = (HttpWebResponse)httpReq.GetResponse();
            ///GetResponseStream()方法获取HTTP响应的数据流,并尝试取得URL中所指定的网页内容 
            ///若成功取得网页的内容,则以System.IO.Stream形式返回,若失败则产生ProtoclViolationException错 误。在此正确的做法应将以下的代码放到一个try块中处理。这里简单处理 
            Stream respStream = httpResp.GetResponseStream();
            ///返回的内容是Stream形式的,所以可以利用StreamReader类获取GetResponseStream的内容,并以 
            //StreamReader类的Read方法依次读取网页源程序代码每一行的内容,直至行尾(读取的编码格式:UTF8) 
            StreamReader respStreamReader = new StreamReader(respStream, Encoding.UTF8);
            strBuff = respStreamReader.ReadToEnd();
            return strBuff;
        }


        /// <summary> 
        /// Get方式获取url地址输出内容 
        /// </summary> /// <param name="url">url</param> 
        /// <param name="encoding">返回内容编码方式,例如:Encoding.UTF8</param> 
         public static String SendRequest(String url,Encoding encoding) 
         { 
             HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(url); 
             webRequest.Method = "GET"; 
             HttpWebResponse webResponse = (HttpWebResponse)webRequest.GetResponse(); 
             StreamReader sr = new StreamReader(webResponse.GetResponseStream(), encoding); 
             return sr.ReadToEnd(); 
         }

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
可以使用 `HttpWebRequest` 类来发送带有 `form-data` 的 POST 请求。 以下是一个示例代码: ```csharp public static string HttpPostForm(string url, Dictionary<string, object> formData, string boundary) { string result = string.Empty; HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); request.Method = "POST"; request.ContentType = "multipart/form-data; boundary=" + boundary; using (Stream requestStream = request.GetRequestStream()) { // 添加表单数据 foreach (var item in formData) { if (item.Value is byte[]) { byte[] fileData = (byte[])item.Value; string fileName = item.Key; string fileContentType = "application/octet-stream"; // 写入文件数据 WriteFileData(requestStream, boundary, fileName, fileContentType, fileData); } else { // 写入表单数据 WriteFormData(requestStream, boundary, item.Key, item.Value.ToString()); } } // 写入结束标识 WriteEndBoundary(requestStream, boundary); } // 发送请求 using (HttpWebResponse response = (HttpWebResponse)request.GetResponse()) { using (Stream responseStream = response.GetResponseStream()) { using (StreamReader reader = new StreamReader(responseStream, Encoding.UTF8)) { result = reader.ReadToEnd(); } } } return result; } private static void WriteFormData(Stream stream, string boundary, string key, string value) { string formDataTemplate = "--{0}\r\nContent-Disposition: form-data; name=\"{1}\"\r\n\r\n{2}\r\n"; string formData = string.Format(formDataTemplate, boundary, key, value); byte[] formDataBytes = Encoding.UTF8.GetBytes(formData); stream.Write(formDataBytes, 0, formDataBytes.Length); } private static void WriteFileData(Stream stream, string boundary, string fileName, string fileContentType, byte[] fileData) { string fileDataTemplate = "--{0}\r\nContent-Disposition: form-data; name=\"{1}\"; filename=\"{2}\"\r\nContent-Type: {3}\r\n\r\n"; string fileDataHeader = string.Format(fileDataTemplate, boundary, "file", fileName, fileContentType); byte[] fileDataHeaderBytes = Encoding.UTF8.GetBytes(fileDataHeader); stream.Write(fileDataHeaderBytes, 0, fileDataHeaderBytes.Length); stream.Write(fileData, 0, fileData.Length); byte[] fileDataEndBytes = Encoding.UTF8.GetBytes("\r\n"); stream.Write(fileDataEndBytes, 0, fileDataEndBytes.Length); } private static void WriteEndBoundary(Stream stream, string boundary) { string endBoundaryTemplate = "--{0}--\r\n"; string endBoundary = string.Format(endBoundaryTemplate, boundary); byte[] endBoundaryBytes = Encoding.UTF8.GetBytes(endBoundary); stream.Write(endBoundaryBytes, 0, endBoundaryBytes.Length); } ``` 其中,`HttpPostForm` 方法用于发送 POST 请求,接收一个 url、一个表单数据字典、一个边界字符串作为参数。在方法内部,我们首先设置请求方法和请求头,然后通过 `GetRequestStream` 方法获取请求流。在请求流中,我们遍历表单数据字典,将表单数据和文件数据分别写入请求流中,最后写入结束标识。最后,我们通过 `GetResponse` 方法获取响应,并将响应内容读取出来。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值