C# multipart/form-data 提交文件和参数

  public static string PostJsonData(string url, Dictionary<string, string> dic, string imgfile)
        {       

       string str = "";
            try
            {
                HttpClient client = new HttpClient();
                var postContent = new MultipartFormDataContent();
                string boundary = string.Format("--{0}", DateTime.Now.Ticks.ToString("x"));
                postContent.Headers.Add("ContentType", $"multipart/form-data, boundary={boundary}");
               string image_file_Type="faceImage";
                postContent.Add(new ByteArrayContent(File.ReadAllBytes(imgfile)), image_file_Type, imgfile);
                foreach (var key in dic.Keys)
                {
                    postContent.Add(new StringContent(dic[key].ToString()), key);
                }
                HttpResponseMessage response = client.PostAsync(url, postContent).Result;
                str = response.Content.ReadAsStringAsync().Result;
                
            }
            catch (Exception ex)
            {
                Log.Print("PostJsonData:" + ex.ToString());
            }
            return str;

  }

C# 中,可以使用 `HttpClient` 类来提交 `multipart/form-data` 数据。下面是一个示例: ```csharp using System; using System.Net.Http; using System.Net.Http.Headers; using System.IO; class Program { static async System.Threading.Tasks.Task Main(string[] args) { using (var httpClient = new HttpClient()) { using (var formData = new MultipartFormDataContent()) { // 添加文本字段 formData.Add(new StringContent("john"), "username"); formData.Add(new StringContent("password123"), "password"); // 添加文件字段 var fileContent = new ByteArrayContent(File.ReadAllBytes("path/to/file")); fileContent.Headers.ContentType = MediaTypeHeaderValue.Parse("application/octet-stream"); formData.Add(fileContent, "file", "filename.ext"); var response = await httpClient.PostAsync("https://example.com/api/upload", formData); if (response.IsSuccessStatusCode) { // 处理成功响应 var result = await response.Content.ReadAsStringAsync(); Console.WriteLine(result); } else { // 处理错误响应 Console.WriteLine("请求失败"); } } } } } ``` 在上述示例中,我们使用 `MultipartFormDataContent` 来创建一个 `multipart/form-data` 请求体,并添加文本字段和文件字段。对于文本字段,我们使用 `StringContent` 类来创建,并指定字段名称。对于文件字段,我们首先读取文件内容并创建 `ByteArrayContent` 对象,然后设置其内容类型为 `application/octet-stream`。最后,我们使用 `Add` 方法将字段添加到 `MultipartFormDataContent` 对象中。 然后,我们使用 `PostAsync` 方法将 `MultipartFormDataContent` 对象作为请求体发送到指定的 API 端点。根据服务器的响应,你可以进一步处理成功或失败的情况。 请注意,这只是一个简单的示例,实际的代码可能需要根据你的具体需求进行调整。另外,记得替换示例中的 URL 和文件路径为你实际使用的值。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值