如何将文件作为 MultipartFormDataContent 从表单传递到 HttpClient.PostAsync
How to pass a file from a form to HttpClient.PostAsync as a MultipartFormDataContent
有一个允许用户上传文件的表单。这里没什么好看的。
文件被控制器捕获为 HttpPostedFileBase。
然后从控制器将 HttpPostedFileBase 发送到服务,该服务希望使用 HTTPClient 将该文件转发到 WEB API。
我们使用 client.PostAsync(url, content) 其中内容是 MultipartFormDataContent 其中 StreamContent使用 IO FileRead (Stream) 添加。下面的代码。
问题是来自 HttpPostedFileBase 的文件路径引用了用户本地计算机路径,当服务器尝试读取它时失败并显示:
找不到部分路径'C:\Users.....'错误
尝试使用 Server.MapPath 进行播放,但在此过程中文件未保存到服务器(也许一定是?)
控制器
[HttpPost]
public ActionResult uploadFile(HttpPostedFileBase upload, int someID)
{
FileUploadService.UploadFile(upload, someID);
return RedirectToAction("Index");
}
服务
public static bool UploadFile(HttpPostedFileBase file, int itemID)
{
using (var content = new MultipartFormDataContent())
{
Stream fs = File.OpenRead(file.FileName); //code fails on this line
content.Add(CreateFileContent(fs, file.FileName, "text/plain"));
client.DefaultRequestHeaders.Clear();
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("text/plain"));
client.DefaultRequestHeaders.Add("Authorization-Token", token);
var url = String.Format(.....'code removed not important this part is working' );
var response = client.PostAsync(url, content).Result;
response.EnsureSuccessStatusCode();
if (response.IsSuccessStatusCode)
{
string responseString = response.Content.ReadAsStringAsync().Result;
return true;
}
else
{
return false;
}
}
}
private static StreamContent CreateFileContent(Stream stream, string fileName, string contentType)
{
try
{
var fileContent = new StreamContent(stream);
fileContent.Headers.ContentDisposition = new System.Net.Http.Headers.ContentDispositionHeaderValue("form-data")
{
Name = "UploadedFile",
FileName = "\"" + fileName + "\""
};
fileContent.Headers.ContentType = new MediaTypeHeaderValue(contentType);
return fileContent;
}
catch (Exception ex)
{
return null;
}
}
在失败的那一行,您基本上是在说从服务器上的磁盘打开一个文件,但您还没有将它保存在那里。幸运的是你不需要;您可以直接从 HttpPostedFileBase
.
获取流
只需替换为:
Stream fs = File.OpenRead(file.FileName);
content.Add(CreateFileContent(fs, file.FileName, "text/plain"));
有了这个:
content.Add(CreateFileContent(file.InputStream, file.FileName, "text/plain"));
有一个允许用户上传文件的表单。这里没什么好看的。 文件被控制器捕获为 HttpPostedFileBase。
然后从控制器将 HttpPostedFileBase 发送到服务,该服务希望使用 HTTPClient 将该文件转发到 WEB API。
我们使用 client.PostAsync(url, content) 其中内容是 MultipartFormDataContent 其中 StreamContent使用 IO FileRead (Stream) 添加。下面的代码。
问题是来自 HttpPostedFileBase 的文件路径引用了用户本地计算机路径,当服务器尝试读取它时失败并显示: 找不到部分路径'C:\Users.....'错误
尝试使用 Server.MapPath 进行播放,但在此过程中文件未保存到服务器(也许一定是?)
控制器
[HttpPost]
public ActionResult uploadFile(HttpPostedFileBase upload, int someID)
{
FileUploadService.UploadFile(upload, someID);
return RedirectToAction("Index");
}
服务
public static bool UploadFile(HttpPostedFileBase file, int itemID)
{
using (var content = new MultipartFormDataContent())
{
Stream fs = File.OpenRead(file.FileName); //code fails on this line
content.Add(CreateFileContent(fs, file.FileName, "text/plain"));
client.DefaultRequestHeaders.Clear();
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("text/plain"));
client.DefaultRequestHeaders.Add("Authorization-Token", token);
var url = String.Format(.....'code removed not important this part is working' );
var response = client.PostAsync(url, content).Result;
response.EnsureSuccessStatusCode();
if (response.IsSuccessStatusCode)
{
string responseString = response.Content.ReadAsStringAsync().Result;
return true;
}
else
{
return false;
}
}
}
private static StreamContent CreateFileContent(Stream stream, string fileName, string contentType)
{
try
{
var fileContent = new StreamContent(stream);
fileContent.Headers.ContentDisposition = new System.Net.Http.Headers.ContentDispositionHeaderValue("form-data")
{
Name = "UploadedFile",
FileName = "\"" + fileName + "\""
};
fileContent.Headers.ContentType = new MediaTypeHeaderValue(contentType);
return fileContent;
}
catch (Exception ex)
{
return null;
}
}
在失败的那一行,您基本上是在说从服务器上的磁盘打开一个文件,但您还没有将它保存在那里。幸运的是你不需要;您可以直接从 HttpPostedFileBase
.
只需替换为:
Stream fs = File.OpenRead(file.FileName);
content.Add(CreateFileContent(fs, file.FileName, "text/plain"));
有了这个:
content.Add(CreateFileContent(file.InputStream, file.FileName, "text/plain"));