C# HttpWebRequest 上传大文件

*
*
*、

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

namespace WinFormsApp
{

    /// <summary>
    /// C# HttpWebRequest 上传大文件
    /// </summary>
    public class Class1
    {
        public static string ExecutePost(UploadParameterType parameter)
        {
            using (MemoryStream memoryStream = new MemoryStream())
            {
                // 1.分界线
                string boundary = string.Format("----{0}", DateTime.Now.Ticks.ToString("x")),        // 分界线可以自定义参数
                    beginBoundary = string.Format("--{0}\r\n", boundary),
                    endBoundary = string.Format("\r\n--{0}--\r\n", boundary);
                byte[] beginBoundaryBytes = parameter.Encoding.GetBytes(beginBoundary),
                    endBoundaryBytes = parameter.Encoding.GetBytes(endBoundary);
                // 2.组装开始分界线数据体 到内存流中
                memoryStream.Write(beginBoundaryBytes, 0, beginBoundaryBytes.Length);
                // 3.组装 上传文件附加携带的参数 到内存流中
                if (parameter.PostParameters != null && parameter.PostParameters.Count > 0)
                {
                    foreach (KeyValuePair<string, string> keyValuePair in parameter.PostParameters)
                    {
                        string parameterHeaderTemplate = string.Format("Content-Disposition: form-data; name=\"{0}\"\r\n\r\n{1}\r\n{2}", keyValuePair.Key, keyValuePair.Value, beginBoundary);
                        byte[] parameterHeaderBytes = parameter.Encoding.GetBytes(parameterHeaderTemplate);

                        memoryStream.Write(parameterHeaderBytes, 0, parameterHeaderBytes.Length);
                    }
                }

                if (parameter.FileNameValue != null)//如果没有你文件则跳过本检测
                {
                    //4.组装文件头数据体 到内存流中
                    string fileHeaderTemplate = string.Format("Content-Disposition: form-data; name=\"{0}\"; filename=\"{1}\"\r\nContent-Type: application/octet-stream\r\n\r\n", parameter.FileNameKey, parameter.FileNameValue);
                    byte[] fileHeaderBytes = parameter.Encoding.GetBytes(fileHeaderTemplate);
                    memoryStream.Write(fileHeaderBytes, 0, fileHeaderBytes.Length);
                    // 5.组装文件流 到内存流中
                    byte[] buffer = new byte[1024 * 1024 * 1];
                    int size = parameter.UploadStream.Read(buffer, 0, buffer.Length);
                    while (size > 0)
                    {
                        memoryStream.Write(buffer, 0, size);
                        size = parameter.UploadStream.Read(buffer, 0, buffer.Length);
                    }
                    // 6.组装结束分界线数据体 到内存流中
                    memoryStream.Write(endBoundaryBytes, 0, endBoundaryBytes.Length);

                }
                //7.获取二进制数据
                byte[] postBytes = memoryStream.ToArray();
                // 8.HttpWebRequest 组装
                HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(new Uri(parameter.Url, UriKind.RelativeOrAbsolute));
                webRequest.Method = "POST";
                webRequest.Timeout = 10000;
                webRequest.ContentType = string.Format("multipart/form-data; boundary={0}", boundary);
                webRequest.ContentLength = postBytes.Length;
                if (Regex.IsMatch(parameter.Url, "^https://"))
                {
                    ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls;
                    ServicePointManager.ServerCertificateValidationCallback = CheckValidationResult;
                }
                // 9.写入上传请求数据
                using (Stream requestStream = webRequest.GetRequestStream())
                {
                    requestStream.Write(postBytes, 0, postBytes.Length);
                    requestStream.Close();
                }
                // 10.获取响应
                using (HttpWebResponse webResponse = (HttpWebResponse)webRequest.GetResponse())
                {
                    using (StreamReader reader = new StreamReader(webResponse.GetResponseStream(), parameter.Encoding))
                    {
                        string body = reader.ReadToEnd();
                        reader.Close();
                        return body;
                    }
                }
            }
        }

        static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
        {
            return true;
        }
    }
}

*、UploadParameterType.cs

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace WinFormsApp
{
    /// <summary>
    /// 上传文件 - 请求参数类
    /// </summary>
    public class UploadParameterType
    {
        public UploadParameterType()
        {
            FileNameKey = "fileName";
            Encoding = Encoding.UTF8;
            PostParameters = new Dictionary<string, string>();
        }
        /// <summary>
        /// 上传地址
        /// </summary>
        public string Url { get; set; }
        /// <summary>
        /// 文件名称key
        /// </summary>
        public string FileNameKey { get; set; }
        /// <summary>
        /// 文件名称value
        /// </summary>
        public string FileNameValue { get; set; }
        /// <summary>
        /// 编码格式
        /// </summary>
        public Encoding Encoding { get; set; }
        /// <summary>
        /// 上传文件的流
        /// </summary>
        public Stream UploadStream { get; set; }
        /// <summary>
        /// 上传文件 携带的参数集合
        /// </summary>
        public IDictionary<string, string> PostParameters { get; set; }
    }
}

*
*
*、直接调用

using (FileStream fs = new FileStream(@"C:\\test.zip", FileMode.Open, FileAccess.Read))
{
    Dictionary<string, string> postParameter = new Dictionary<string, string>();
    postParameter.Add("name", "heshang");
    postParameter.Add("param", "1 2 3");
    string result = HttpUploadClient.Execute(new UploadParameterType
    {
        Url = url,
        UploadStream = fs,
        FileNameValue = "test.zip",
        PostParameters = postParameter
    });
}

*、接口

public IHttpActionResult Post()
{
    HttpPostedFile file = HttpContext.Current.Request.Files[0];
    string pyPath = HttpContext.Current.Request["name"];
    string Params = HttpContext.Current.Request["params"];
    file.SaveAs("C:\\test.zip");
    return Ok("");
}

*
*
*
*
*

### 回答1: C#中使用HttpWebRequest上传文件的步骤如下: 1. 创建HttpWebRequest对象,设置请求的URL和请求方法为POST。 2. 设置请求头部信息,包括Content-Type和Content-Length等。 3. 打开请求流,将文件数据写入请求流中。 4. 发送请求,获取响应。 5. 关闭请求流和响应流,释放资源。 具体实现可以参考以下代码: ``` string url = "http://example.com/upload"; string filePath = "C:\\test.txt"; HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); request.Method = "POST"; request.ContentType = "application/octet-stream"; request.ContentLength = new FileInfo(filePath).Length; using (Stream requestStream = request.GetRequestStream()) { using (FileStream fileStream = new FileStream(filePath, FileMode.Open, FileAccess.Read)) { byte[] buffer = new byte[4096]; int bytesRead = ; while ((bytesRead = fileStream.Read(buffer, , buffer.Length)) != ) { requestStream.Write(buffer, , bytesRead); } } } using (HttpWebResponse response = (HttpWebResponse)request.GetResponse()) { // 处理响应 } ``` ### 回答2: C是一种编程语言,被广泛用于系统级应用程序开发,操作系统开发和网络编程等领域。C语言最早是由贝尔实验室的Dennis Ritchie在20世纪70年代初开发的。在20世纪70年代末和80年代初,C语言在操作系统开发和编译器构建中广受欢迎,迅速发展为一种重要的编程语言。 C语言的特点是简单、直接、快速和高效。它被设计成一种高级的汇编语言,可以直接调用计算机底层的硬件和操作系统,同时还可以通过库函数实现高级的操作。C语言的基本数据类型包括整数、字符、浮点数和指针等。C语言的语法简单,容易学习和使用,代码的可读性很高,可以方便地修改、调试和维护。 C语言的应用领域非常广泛。它在操作系统、网络编程、游戏开发、图形处理、数据库管理、嵌入式系统、物联网和人工智能等方面都有应用。许多重要的软件都是用C语言编写的,比如Unix系统、Linux系统、MySQL数据库、Apache服务器等。 尽管C语言已经有几十年的历史,但它仍然是编程语言中一个非常重要的组成部分。许多高级的编程语言(如C++和Java)都是在C语言的基础上发展而来,而C语言本身也经过了不断的更新和改进。C语言的简单、快速和高效使得它在计算机编程领域中非常受欢迎,因此学习C语言是计算机科学和软件工程的必修课程之一。 ### 回答3: C是一种高级程序设计语言,它是由Dennis Ritchie在20世纪70年代中期开发的,用来编写操作系统和其他底层软件。它是目前应用范围最广的编程语言之一,因为它简单、高效、可移植性强、理解容易且非常灵活。C语言不仅仅用于开发操作系统,还可以开发各种类型的软件,包括网络服务器、数据库管理系统、计算机游戏和移动应用程序等。 C语言具有很多特性,比如结构化编程、函数库支持、类型检查、动态内存分配等,可以帮助程序员更好地掌控程序的执行。C语言也支持面向对象编程,虽然不是最常见的面向对象编程语言,但在很多领域中,面向对象的C语言代码仍然很常见。 在学习C语言时,需要先了解语言的基本结构和语法,理解C语言的编译器运行原理以及如何在Linux和Windows操作系统中编写代码。C语言的编程练习对于提高编程能力以及理解计算机科学的基本概念非常有益。 总之,C语言是一门非常重要的编程语言,历经数十年的演进,它仍然被广泛使用于实时操作系统、嵌入式系统、网络编程和许多其他领域。学习C语言能够培养计算机编程能力,加深对计算机系统运作原理的理解,是一项非常有价值的技能。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值