我在ASP.NET MVC中将存储在数据库中的文件发送回用户时遇到问题。我想要的是一个列出两个链接的视图,一个用于查看文件,让发送给浏览器的mimetype确定应该如何处理,另一个用于强制下载。
如果我选择查看名为SomeRandomFile.bak
的文件并且浏览器没有相关程序来打开此类型的文件,那么我没有任何问题,它默认为下载行为。但是,如果我选择查看名为SomeRandomFile.pdf
或SomeRandomFile.jpg
的文件,我希望该文件只是打开。但是我也希望将下载链接保留在一边,这样无论文件类型如何,我都可以强制下载提示。这有意义吗?
我已经尝试了FileStreamResult
并且它适用于大多数文件,默认情况下它的构造函数不接受文件名,因此根据url(不知道扩展名为url)为未知文件分配文件名根据内容类型给出)。如果我通过指定强制文件名,我将失去浏览器直接打开文件的能力,我得到一个下载提示。有没有其他人遇到过这个。
这些是我迄今为止尝试过的例子。
//Gives me a download prompt.
return File(document.Data, document.ContentType, document.Name);
//Opens if it is a known extension type, downloads otherwise (download has bogus name and missing extension)
return new FileStreamResult(new MemoryStream(document.Data), document.ContentType);
//Gives me a download prompt (lose the ability to open by default if known type)
return new FileStreamResult(new MemoryStream(document.Data), document.ContentType) {FileDownloadName = document.Name};
有什么建议吗?
更新
这个问题似乎引起了很多人的共鸣,所以我想我会发布一个更新。 Oskar在国际角色上添加的关于下面接受的答案的警告是完全有效的,并且由于使用了ContentDisposition
类,我已经打了几次。我已经更新了我的实现来解决这个问题。虽然下面的代码来自我最近在ASP.NET Core(完整框架)应用程序中解决此问题,但它应该在较旧的MVC应用程序中进行最小的更改,因为我正在使用System.Net.Http.Headers.ContentDispositionHeaderValue
类
using System.Net.Http.Headers;
public IActionResult Download()
{
Document document = ... //Obtain document from database context
//"attachment" means always prompt the user to download
//"inline" means let the browser try and handle it
var cd = new ContentDispositionHeaderValue("attachment")
{
FileNameStar = document.FileName
};
Response.Headers.Add(HeaderNames.ContentDisposition, cd.ToString());
return File(document.Data, document.ContentType);
}
// an entity class for the document in my database
public class Document
{
public string FileName { get; set; }
public string ContentType { get; set; }
public byte[] Data { get; set; }
//Other properties left out for brevity
}
答案 0 :(得分:404)
public ActionResult Download()
{
var document = ...
var cd = new System.Net.Mime.ContentDisposition
{
// for example foo.bak
FileName = document.FileName,
// always prompt the user for downloading, set to true if you want
// the browser to try to show the file inline
Inline = false,
};
Response.AppendHeader("Content-Disposition", cd.ToString());
return File(document.Data, document.ContentType);
}
注意:上面的示例代码无法正确说明文件名中的国际字符。有关标准化,请参阅RFC6266。我相信最近版本的ASP.Net MVC的File()
方法和ContentDispositionHeaderValue
类正确地解释了这一点。 - 奥斯卡2016-02-25
答案 1 :(得分:111)
我对接受的答案有困难,因为"文件"没有类型暗示。变量:var document = ...
所以我发布了对我来说有用的东西,以防其他人遇到麻烦。
public ActionResult DownloadFile()
{
string filename = "File.pdf";
string filepath = AppDomain.CurrentDomain.BaseDirectory + "/Path/To/File/" + filename;
byte[] filedata = System.IO.File.ReadAllBytes(filepath);
string contentType = MimeMapping.GetMimeMapping(filepath);
var cd = new System.Net.Mime.ContentDisposition
{
FileName = filename,
Inline = true,
};
Response.AppendHeader("Content-Disposition", cd.ToString());
return File(filedata, contentType);
}
答案 2 :(得分:12)
Darin Dimitrov's answer是正确的。只是一个补充:
如果您的回复已包含“Content-Disposition”标头,则 Response.AppendHeader("Content-Disposition", cd.ToString());
可能会导致浏览器无法呈现该文件。在这种情况下,您可能希望使用:
Response.Headers.Add("Content-Disposition", cd.ToString());
答案 3 :(得分:9)
要查看文件(例如txt):
return File("~/TextFileInRootDir.txt", MediaTypeNames.Text.Plain);
下载文件(例如txt):
return File("~/TextFileInRootDir.txt", MediaTypeNames.Text.Plain, "TextFile.txt");
注意:要下载文件,我们应该传递 fileDownloadName 参数
答案 4 :(得分:3)
我相信这个答案更清晰,(基于 https://stackoverflow.com/a/3007668/550975)
public ActionResult GetAttachment(long id)
{
FileAttachment attachment;
using (var db = new TheContext())
{
attachment = db.FileAttachments.FirstOrDefault(x => x.Id == id);
}
return File(attachment.FileData, "application/force-download", Path.GetFileName(attachment.FileName));
}
答案 5 :(得分:1)
FileVirtualPath - >研究\全球办公室评论.pdf
public virtual ActionResult GetFile()
{
return File(FileVirtualPath, "application/force-download", Path.GetFileName(FileVirtualPath));
}
答案 6 :(得分:0)
下面的代码对我来说是从API服务获取pdf文件并将其响应给浏览器 - 希望它有所帮助;
loading == false
答案 7 :(得分:0)
如果像我一样,当您在学习Blazor时通过Razor组件进入了本主题,那么您将发现需要更多地思考才能解决此问题。如果Blazor是您第一次涉足MVC类型的世界,那将是一个雷区,因为文档对于此类“琐碎的”任务没有帮助。
因此,在撰写本文时,如果不嵌入MVC控制器来处理文件下载部分,则无法使用Vanilla Blazor / Razor实现此目的,其示例如下:
using Microsoft.AspNetCore.Mvc;
using Microsoft.Net.Http.Headers;
[Route("api/[controller]")]
[ApiController]
public class FileHandlingController : ControllerBase
{
[HttpGet]
public FileContentResult Download(int attachmentId)
{
TaskAttachment taskFile = null;
if (attachmentId > 0)
{
// taskFile = <your code to get the file>
// which assumes it's an object with relevant properties as required below
if (taskFile != null)
{
var cd = new System.Net.Http.Headers.ContentDispositionHeaderValue("attachment")
{
FileNameStar = taskFile.Filename
};
Response.Headers.Add(HeaderNames.ContentDisposition, cd.ToString());
}
}
return new FileContentResult(taskFile?.FileData, taskFile?.FileContentType);
}
}
下一步,确保将应用程序启动(Startup.cs)配置为正确使用MVC并显示以下行(如果没有,请添加):
services.AddMvc();
..然后最终修改您的组件以链接到控制器,例如(使用自定义类的基于迭代的示例):
<tbody>
@foreach (var attachment in yourAttachments)
{
<tr>
<td><a href="api/FileHandling?attachmentId=@attachment.TaskAttachmentId" target="_blank">@attachment.Filename</a> </td>
<td>@attachment.CreatedUser</td>
<td>@attachment.Created?.ToString("dd MMM yyyy")</td>
<td><ul><li class="oi oi-circle-x delete-attachment"></li></ul></td>
</tr>
}
</tbody>
希望这能帮助任何挣扎(像我一样!)的人在Blazor领域中对这个看似简单的问题找到适当的答案……!
答案 8 :(得分:-1)
Action方法需要使用流,字节[]或文件的虚拟路径返回FileResult。您还需要知道要下载的文件的内容类型。这是一个示例(快速/脏)实用程序方法。样本视频链接 How to download files using asp.net core
[Route("api/[controller]")]
public class DownloadController : Controller
{
[HttpGet]
public async Task<IActionResult> Download()
{
var path = @"C:\Vetrivel\winforms.png";
var memory = new MemoryStream();
using (var stream = new FileStream(path, FileMode.Open))
{
await stream.CopyToAsync(memory);
}
memory.Position = 0;
var ext = Path.GetExtension(path).ToLowerInvariant();
return File(memory, GetMimeTypes()[ext], Path.GetFileName(path));
}
private Dictionary<string, string> GetMimeTypes()
{
return new Dictionary<string, string>
{
{".txt", "text/plain"},
{".pdf", "application/pdf"},
{".doc", "application/vnd.ms-word"},
{".docx", "application/vnd.ms-word"},
{".png", "image/png"},
{".jpg", "image/jpeg"},
...
};
}
}