C#利用HttpWebRequest进行post请求的示例(HTTPS)

代码如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Security;
using System.Security.Cryptography.X509Certificates;
using System.Net;
using System.IO;
using System.IO.Compression;
using System.Text.RegularExpressions;   

namespace HttpWebRequestDemo
{
    class Program
    {
        private static readonly string DefaultUserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)";

        private static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
        {
            return true; //总是接受   
        }

        public static HttpWebResponse CreatePostHttpResponse(string url, IDictionary<string, string> parameters,Encoding charset)
        {
            HttpWebRequest request = null;
            //HTTPSQ请求
            ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
            request = WebRequest.Create(url) as HttpWebRequest;
            request.ProtocolVersion = HttpVersion.Version10;
            request.Method = "POST";
            request.ContentType = "application/x-www-form-urlencoded";
            request.UserAgent = DefaultUserAgent;
            //如果需要POST数据   
            if (!(parameters == null || parameters.Count == 0))
            {
                StringBuilder buffer = new StringBuilder();
                int i = 0;
                foreach (string key in parameters.Keys)
                {
                    if (i > 0)
                    {
                        buffer.AppendFormat("&{0}={1}", key, parameters[key]);
                    }
                    else
                    {
                        buffer.AppendFormat("{0}={1}", key, parameters[key]);
                    }
                    i++;
                }
                byte[] data = charset.GetBytes(buffer.ToString());
                using (Stream stream = request.GetRequestStream())
                {
                    stream.Write(data, 0, data.Length);
                }
            }
            return request.GetResponse() as HttpWebResponse;
        }   

        static void Main(string[] args)
        {
            string url = "https://192.168.1.101/httpOrg/create";
            Encoding encoding = Encoding.GetEncoding("utf-8");
            IDictionary<string, string> parameters = new Dictionary<string, string>();
            parameters.Add("authuser", "*****");
            parameters.Add("authpass", "*****");
            parameters.Add("orgkey","*****");
            parameters.Add("orgname", "*****");
            HttpWebResponse response = Program.CreatePostHttpResponse(url,parameters,encoding);
            //打印返回值
            Stream stream = response.GetResponseStream();   //获取响应的字符串流
            StreamReader sr = new StreamReader(stream); //创建一个stream读取流
            string html = sr.ReadToEnd();   //从头读到尾,放到字符串html
            Console.WriteLine(html); 
        }
    }
}


HttpWebRequest默认会用代理进行连接,导致获取结果比较慢。解决办法是,配置:

request.Proxy = null;

不使用代理,即可。

  • 1
    点赞
  • 22
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
可以使用 `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` 方法获取响应,并将响应内容读取出来。

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值