通过表单发布上传图片

时间:2013-05-07 07:59:01

标签: c# post asp.net-web-api multipartform-data

我正在尝试通过multipart/form-data帖子上传图片,我正在使用下面的代码。我只会上传.jpg张图片。

问题是保存的图像不是有效图像,无法查看。它还比我上传的文件大200个字节,所以我假设我在这里遗漏了什么?

public class FileUploadController : ApiController
{
    public Task<HttpResponseMessage> PostUploadFile()
    {
        return UploadFileAsync().ContinueWith<HttpResponseMessage>((tsk) =>
            {
                HttpResponseMessage response = null;

                if (tsk.IsCompleted)
                {
                    response = new HttpResponseMessage(HttpStatusCode.Created);
                }
                else if (tsk.IsFaulted || tsk.IsCanceled)
                {
                   response = 
                   new HttpResponseMessage(HttpStatusCode.InternalServerError);
                }

                return response;
            });
    }

    public Task UploadFileAsync()
    {
        return this.Request.Content.ReadAsStreamAsync().ContinueWith((tsk) => 
        { SaveToFile(tsk.Result); },
        TaskContinuationOptions.OnlyOnRanToCompletion);
    }

    private void SaveToFile(Stream requestStream)
    {
        string path =
        System.IO.Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory);
        using (FileStream targetStream = 
        File.Create(path + "/Uploads/" + DateTime.Now.ToFileTime() + ".jpg"))
        {
            using (requestStream)
            {
                requestStream.CopyTo(targetStream);
            }
        }
    }
}

这是我用来发布图片的简单表单。

<form action="/api/postuploadfile" enctype="multipart/form-data" method="post">
    Upload Image:
    <input type="file" id="imagename" name="imagename" />
    <input type="submit" />
</form> 

有关图片的信息,之前/之后:
如果我检查了我上传的图片的属性,那么磁盘上的大小与原始图片相同,但大小属性大200-205字节。无论我上传的图像有多大,情况总是如此。

这是POST标题的一部分。我不需要删除边界部分或任何东西?

Source
-----------------------------1944294225892 Content-Disposition: form-data;
name="imagename"; filename="small.jpg" Content-Type: image/jpeg

还有一些标题......

Request Headers From Upload Stream
Content-Length  125661
Content-Type    multipart/form-data; boundary=---------------------------1944294225892

1 个答案:

答案 0 :(得分:3)

实际上,您需要使用某种多部分解析器解析requestStream,如此处所述,以便剥离标题: