如何解析MultipartFormDataContent [英] How to parse MultipartFormDataContent

查看:215
本文介绍了如何解析MultipartFormDataContent的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在编写一个Web API服务,我想在其中接受一个文件(图像)和一个包含有关图像的关键信息的序列化对象(JSON).图像部分没有问题,但是当我添加包含反序列化对象的字符串内容时,我在尝试确定哪一个并采取相应措施时遇到了问题.

I am writing a Web API service where I want to accept a file (image) and a serialized object (JSON) that contains key information about the image. Not having issues with the image part but when I add string content containing the deserialized object I am having issues in trying to determine which is which and act accordingly.

客户端代码如下:

HttpClient client = new HttpClient();

MultipartFormDataContent content = new MultipartFormDataContent();
content.Add(new StreamContent(File.Open("c:\\MyImages\\Image00.jpg", FileMode.Open)), "image_file", "Image00.jpg");

ImageKeys ik = new ImageKeys { ImageId = "12345", Timestamp = DateTime.Now.ToString() };
JavaScriptSerializer js = new JavaScriptSerializer();
if (ik != null)
{
    content.Add(new StringContent(js.Serialize(ik), Encoding.UTF8, "application/json"), "image_keys");
}

string uri = "http://localhost/MyAPI/api/MyQuery/TransferFile";
var request = new HttpRequestMessage()
{
    RequestUri = new Uri(uri),
    Method = HttpMethod.Post
};

request.Content = content;

string responseStr = "";
try
{
    HttpResponseMessage result = client.SendAsync(request).Result;
    string resultContent = string.Format("{0}:{1}", result.StatusCode, result.ReasonPhrase);

    //
    // Handle the response
    //
    responseStr = resultContent;
}
catch (Exception ex)
{
    responseStr = ex.Message;
}

listBox1.Items.Add(responseStr);

因此,我首先包含图像文件,然后包含序列化的对象作为StringContent.在服务器端,我正在使用以下代码来解析消息.

So I include the image file first followed by a serialized object as StringContent. On the server side I am using the following code to parse the message.

HttpRequestMessage request = this.Request;
HttpResponseMessage ret = new HttpResponseMessage();

//
// Verify that this is an HTML Form file upload request
//
if (!request.Content.IsMimeMultipartContent())
{
    throw new HttpResponseException(HttpStatusCode.UnsupportedMediaType);
}

string root = "c:\\tmp\\uploads";
if (!Directory.Exists(root))
{
    Directory.CreateDirectory(root);
}

//
// Create a stream provider for setting up output streams that saves the output under c:\tmp\uploads
// If you want full control over how the stream is saved then derive from MultipartFormDataStreamProvider
// and override what you need.
//
MultipartFormDataStreamProvider streamProvider = new MultipartFormDataStreamProvider(root);

try
{
    await request.Content.ReadAsMultipartAsync(streamProvider);
    foreach (var file in streamProvider.Contents)
    {
        if (file.Headers.ContentDisposition.Name == "image_file")
        {
            FileInfo finfo = new FileInfo(streamProvider.FileData.First().LocalFileName);

            string destFile = Path.Combine(root, streamProvider.FileData.First().Headers.ContentDisposition.FileName.Replace("\"", ""));
            //
            // File.Move cannot deal with duplicate files
            // Ensure that the target does not exist. 
            //
            if (File.Exists(destFile))
            {
                File.Delete(destFile);
            }

            File.Move(finfo.FullName, destFile);
        }
        else if (file.Headers.ContentDisposition.Name == "image_keys")
        {
            // deserialize key class
            string str = file.ReadAsStringAsync().Result;

            JavaScriptSerializer js = new JavaScriptSerializer();
            ImageKeys ik = js.Deserialize<ImageKeys>(str);
        }
    }

    ret.StatusCode = HttpStatusCode.OK;
    ret.Content = new StringContent("File uploaded.");
}
catch (Exception ex)
{
    ret.StatusCode = HttpStatusCode.UnsupportedMediaType;
    ret.Content = new StringContent("File upload failed.");
}

return ret;

foreach循环尝试将多部分内容中的每个项目处理为一个文件,但是我想分别处理各种内容类型,但是我不清楚它们是如何划分的.谢谢

The foreach loop tries to process each item in the multipart content as a file but I want to treat the various content types separately but it is not clear to me how they are delineated. Thanks

推荐答案

您可以将Content转换为MultipartFormDataContent并对其进行迭代.根据内容类型,您可以将其读取为文件或字符串.字符串内容类型的示例:

You can cast Content to MultipartFormDataContent and iterate thru it. Based on content type you can read it as a file or string. Example for string content type:

var dataContents = request.Content as MultipartFormDataContent;

foreach (var dataContent in dataContents)
{
    var name = dataContent.Headers.ContentDisposition.Name;
    var value = dataContent.ReadAsStringAsync().Result;
    ...
}

这篇关于如何解析MultipartFormDataContent的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆