我的控制器需要调用WebAPI方法,该方法将在Content中返回带有pdf文件的HttpResponseMessage对象。我需要立即从控制器返回此文件作为FileResult对象。 我正在尝试从代码中找到的许多解决方案,但似乎所有文件保存方法都是async,我遇到了在同一个控制器方法中立即将文件作为FileResult返回的问题。 这种情况下最好的方法是什么?
我尝试过的一些代码:
System.Threading.Tasks.Task tsk = response.Content.ReadAsFileAsync(localPath, true).ContinueWith(
(readTask) =>
{
Process process = new Process();
process.StartInfo.FileName = localPath;
process.Start();
});
await tsk;
return File(localPath, "application/octetstream", fileName);
这是我的主要想法,从响应内容中获取文件并将其作为FileResult返回。但这会在等待tsk时抛出Access Denied。
答案 0 :(得分:4)
您不必将文件作为文件保存在磁盘上,您可以像这样处理Stream:
public async Task<FileResult> GetFile()
{
using (var client = new HttpClient())
{
var response = await client.GetAsync("https://www-asp.azureedge.net/v-2017-03-27-001/images/ui/asplogo-square.png");
var contentStream = await response.Content.ReadAsStreamAsync();
return this.File(contentStream, "application/png", "MyFile.png");
}
}
希望有所帮助!