0

我正在尝试使用.Net Framework 4.5 和 Web API 将文件上传到使用 Spring MVC 处理文件上传的第 3 方客户端。每次尝试都会遇到错误,“所需的 MultipartFile 参数‘文件’不存在。”

有没有其他人遇到过这个问题?如果是这样,您是如何解决的?Web API 似乎没有提供适当的机制/容器来发送到 Spring,以便它能够识别它。

这是当前代码。

 Uri webService = new Uri(objectInstance);

            var fileContent = new ByteArrayContent(System.IO.File.ReadAllBytes(HttpContext.Current.Server.MapPath("taleotest.xml")));//new ByteArrayContent(new byte[100]);
            fileContent.Headers.ContentDisposition = new ContentDispositionHeaderValue("file")
            {
                FileName = @"C:\taleotest.xml"
            };

            var formData = new FormUrlEncodedContent(new[]
                                            {
                                                new KeyValuePair<string, string>("name", "test"),
                                                new KeyValuePair<string, string>("title", "test2")
                                            });
            //fileContent.add
            var cookieContainer = new CookieContainer();
            cookieContainer.Add(webService, new Cookie("authToken", _authToken));
            var handler = new HttpClientHandler() { CookieContainer = cookieContainer };
            HttpClient httpClient = new HttpClient(handler);

            MultipartContent content = new MultipartContent();
            content.Add(formData);
            content.Add(fileContent);

            var response = httpClient.PostAsync(webService, content).Result;
4

2 回答 2

0

将以下内容添加到我的请求内容中就可以了。

string boundary = "---------------------------" + DateTime.Now.Ticks.ToString("x");
            byte[] boundarybytes = System.Text.Encoding.ASCII.GetBytes("\r\n--" + boundary + "\r\n"); // Encoding
            byte[] trailer = System.Text.Encoding.ASCII.GetBytes("\r\n--" + boundary + "--\r\n");
于 2013-08-09T18:37:17.727 回答
0

您是否尝试将CommonsMultipartResolver属性值添加到applicationContext.xml文件中?http://forum.springsource.org/showthread.php?66240-Problems-with-MultipartFile-Upload

你能确保所有的依赖都被正确引用了吗?示例一:IE9 问题 - Jquery-uploadify 不存在必需的 MultipartFile[] 参数

可能需要更多信息和代码示例来提供更多帮助,这可能是由很多事情引起的。

于 2013-08-08T17:28:17.677 回答