使用文件操作方法时如何在 ASP.NET MVC 中获取文件的 ContentType

发布于 2024-08-08 12:48:14 字数 206 浏览 3 评论 0原文

尝试使用asp.net mvc的文件操作结果。

因此,我似乎必须为要发送到浏览器的文件指定 ContentType。目前,在我的应用程序中可以发送到浏览器的文件类型没有真正的限制,因此我不能总是假设它是“text/pdf”。

计算文件 ContentType 的最佳方法是什么,或者有没有办法将其设置为“通用”?

越简单越好!

谢谢,

Attempting to use asp.net mvc's Action Result of File.

So it would seem that I have to specify a ContentType for the file to be sent to the browser. Currently there is no real limit to what types of files may be sent to the browser in my application, so I can't always assume it will be a "text/pdf", for example.

What's the best way of working out the ContentType of a file, or is there a way where this can be set to something 'generic'?

The simpler the better!

Thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

客…行舟 2024-08-15 12:48:14

您可以使用本地计算机的 MIME 类型数据库(来自注册表):

http:// www.codeproject.com/KB/dotnet/ContentType.aspx

或查找备用词典。就像这个重复这样的问题。

You either user the local machine's database of MIME types (from the registery):

http://www.codeproject.com/KB/dotnet/ContentType.aspx

or find an alternate dictionary. Like this duplicate SO question.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文