首页 > 后端开发 > C++ > 如何从 WCF REST 服务中的多部分/表单数据 POST 中提取文件字节?

如何从 WCF REST 服务中的多部分/表单数据 POST 中提取文件字节?

Susan Sarandon
发布: 2025-01-05 08:15:40
原创
624 人浏览过

How to Extract File Bytes from Multipart/Form-Data POSTs in WCF REST Services?

从 WCF REST 服务中的 Multipart/Form-Data POST 中提取文件字节

Web 表单通常使用 multipart/form-data 内容类型将文件发布到 Web 服务。虽然这可以轻松进行文件传输,但从多部分主体中提取文件字节可能是一个挑战。此问题的一种解决方案是利用 .NET 4.5 中引入的公共 Microsoft API。

要利用此 API,您需要包含 System.Net.Http.dll 和 System.Net.Http.Formatting。 dll 在你的项目中。如果您使用的是 .NET 4,则可以通过 NuGet 获取这些程序集。

准备好程序集后,您可以使用以下代码来解析多部分主体并提取文件字节:

public static async Task ParseFiles(
    Stream data,
    string contentType,
    Action<string, Stream> fileProcessor)
{
    // Create a stream content based on the input stream
    var streamContent = new StreamContent(data);

    // Set the content type header
    streamContent.Headers.ContentType = MediaTypeHeaderValue.Parse(contentType);

    // Read the multipart data as multipart content
    var provider = await streamContent.ReadAsMultipartAsync();

    // Loop through each content retrieved from the multipart body
    foreach (var httpContent in provider.Contents)
    {
        // Get the file name
        var fileName = httpContent.Headers.ContentDisposition.FileName;

        // If there is a file name, ignore empty file names
        if (string.IsNullOrWhiteSpace(fileName))
        {
            continue;
        }

        // Read the file content stream
        using (Stream fileContents = await httpContent.ReadAsStreamAsync())
        {
            // Pass the file name and file content stream to the specified processor
            fileProcessor(fileName, fileContents);
        }
    }
}
````

To use this code, you can create a custom file processor method, such as:
登录后复制

private void MyProcessMethod(字符串名称, Stream内容)
{

// Your code to process the file data
登录后复制

}

以上是如何从 WCF REST 服务中的多部分/表单数据 POST 中提取文件字节?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板