在 C# 中使用 HTTP POST 发送文件 [关闭]

Posted

技术标签:

【中文标题】在 C# 中使用 HTTP POST 发送文件 [关闭]【英文标题】:Sending Files using HTTP POST in c# [closed] 【发布时间】:2013-03-22 06:08:48 【问题描述】:

我有一个小型 C# Web 应用程序。如何获取允许用户通过 HTTP POST 发送文件的 c# 代码。它应该能够发送文本文件、图像文件、excel、csv、doc(所有类型的文件) 不使用流阅读器等。

【问题讨论】:

***.com/questions/566462/… I have tried different methods but none of them helped me. - 如果您展示了您尝试过的一些方法,我们可能会发现它们有什么问题。目前,很难进行建设性的讨论。 Send a file via HTTP POST with C# 和其他各种副本的副本。展示您尝试过的内容,投票者请考虑您要投票的问题是对网站的欢迎添加还是只是重复。 【参考方案1】:

你可以试试下面的代码:

    public void PostMultipleFiles(string url, string[] files)

    string boundary = "----------------------------" + DateTime.Now.Ticks.ToString("x");
    HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(url);
    httpWebRequest.ContentType = "multipart/form-data; boundary=" + boundary;
    httpWebRequest.Method = "POST";
    httpWebRequest.KeepAlive = true;
    httpWebRequest.Credentials = System.Net.CredentialCache.DefaultCredentials;
    Stream memStream = new System.IO.MemoryStream();
    byte[] boundarybytes =System.Text.Encoding.ASCII.GetBytes("\r\n--" + boundary     +"\r\n");
    string formdataTemplate = "\r\n--" + boundary + "\r\nContent-Disposition:  form-data; name=\"0\";\r\n\r\n1";
    string headerTemplate = "Content-Disposition: form-data; name=\"0\"; filename=\"1\"\r\n Content-Type: application/octet-stream\r\n\r\n";
    memStream.Write(boundarybytes, 0, boundarybytes.Length);
    for (int i = 0; i < files.Length; i++)
    
        string header = string.Format(headerTemplate, "file" + i, files[i]);
        //string header = string.Format(headerTemplate, "uplTheFile", files[i]);
        byte[] headerbytes = System.Text.Encoding.UTF8.GetBytes(header);
        memStream.Write(headerbytes, 0, headerbytes.Length);
        FileStream fileStream = new FileStream(files[i], FileMode.Open,
        FileAccess.Read);
        byte[] buffer = new byte[1024];
        int bytesRead = 0;
        while ((bytesRead = fileStream.Read(buffer, 0, buffer.Length)) != 0)
        
            memStream.Write(buffer, 0, bytesRead);
        
        memStream.Write(boundarybytes, 0, boundarybytes.Length);
        fileStream.Close();
    
    httpWebRequest.ContentLength = memStream.Length;
    Stream requestStream = httpWebRequest.GetRequestStream();
    memStream.Position = 0;
    byte[] tempBuffer = new byte[memStream.Length];
    memStream.Read(tempBuffer, 0, tempBuffer.Length);
    memStream.Close();
    requestStream.Write(tempBuffer, 0, tempBuffer.Length);
    requestStream.Close();
    try
    
        WebResponse webResponse = httpWebRequest.GetResponse();
        Stream stream = webResponse.GetResponseStream();
        StreamReader reader = new StreamReader(stream);
        string var = reader.ReadToEnd();

    
    catch (Exception ex)
    
        response.Innerhtml = ex.Message;
    
    httpWebRequest = null;

【讨论】:

仅仅转储 50 行代码不是答案。这个问题有很多答案,其中许多代码(也更防错)已经内置在 .NET 类型中,例如 WebClient 和 HttpClient。 你能解释一下接收者页面的检索过程吗? 你能举个网址的例子吗?它是否包含文件名?【参考方案2】:

使用 .NET 4.5(或 .NET 4.0,通过从 NuGet 添加 Microsoft.Net.Http 包)有一种更简单的方法来模拟表单请求。这是一个例子:

private System.IO.Stream Upload(string actionUrl, string paramString, Stream paramFileStream, byte [] paramFileBytes)

    HttpContent stringContent = new StringContent(paramString);
    HttpContent fileStreamContent = new StreamContent(paramFileStream);
    HttpContent bytesContent = new ByteArrayContent(paramFileBytes);
    using (var client = new HttpClient())
    using (var formData = new MultipartFormDataContent())
    
        formData.Add(stringContent, "param1", "param1");
        formData.Add(fileStreamContent, "file1", "file1");
        formData.Add(bytesContent, "file2", "file2");
        var response = client.PostAsync(actionUrl, formData).Result;
        if (!response.IsSuccessStatusCode)
        
            return null;
        
        return response.Content.ReadAsStreamAsync().Result;
    

【讨论】:

是否必须始终使用多部分表单数据?【参考方案3】:

试试这个

string fileToUpload = @"c:\user\test.txt";
string url = "http://example.com/upload";
using (var client = new WebClient())

byte[] result = client.UploadFile(url, fileToUpload);
string responseAsString = Encoding.Default.GetString(result);

【讨论】:

以上是关于在 C# 中使用 HTTP POST 发送文件 [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

c#如何post文件流

使用 HttpClient 和 C# 在 post 请求中发送 json

如何使用 C# 在 POST 请求中发送 json 数据 [重复]

使用 C# 在 Windows 8 Metro App 上发送 POST 请求

C# HttpClient:如何在 POST 请求中发送查询字符串

从 C# 向 URL 发送 POST 请求 [重复]