MVC 控制器,从 WebAPI 获取文件并返回为 FileResult



我的控制器需要调用一个WebAPI方法,该方法将返回一个HttpResponseMessage对象,并在内容中包含一个pdf文件。我需要立即将此文件作为 FileResult 对象从控制器返回。我正在尝试从周围找到的代码中组合在一起的许多解决方案,但似乎所有文件保存方法都是异步的,并且我在同一控制器方法中立即将文件作为 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 上抛出访问被拒绝。

您不必将磁盘上的文件另存为文件,只需处理如下所示的 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");
    }
}

希望对您有所帮助!

相关内容

  • 没有找到相关文章

最新更新