从 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中文网其他相关文章!