我正在使用ASP.NET MVC的新WebAPI开发Web服务,该WebAPI将提供二进制文件,主要是.cab
和.exe
个文件。
以下控制器方法似乎有效,这意味着它返回一个文件,但它将内容类型设置为application/json
:
public HttpResponseMessage<Stream> Post(string version, string environment, string filetype)
{
var path = @"C:\Temp\test.exe";
var stream = new FileStream(path, FileMode.Open);
return new HttpResponseMessage<Stream>(stream, new MediaTypeHeaderValue("application/octet-stream"));
}
有更好的方法吗?
答案 0 :(得分:480)
尝试使用简单的HttpResponseMessage
,其Content
属性设置为StreamContent
:
// using System.IO;
// using System.Net.Http;
// using System.Net.Http.Headers;
public HttpResponseMessage Post(string version, string environment,
string filetype)
{
var path = @"C:\Temp\test.exe";
HttpResponseMessage result = new HttpResponseMessage(HttpStatusCode.OK);
var stream = new FileStream(path, FileMode.Open, FileAccess.Read);
result.Content = new StreamContent(stream);
result.Content.Headers.ContentType =
new MediaTypeHeaderValue("application/octet-stream");
return result;
}
有关使用stream
的一些注意事项:
您不能调用stream.Dispose()
,因为Web API在处理控制器方法result
以将数据发送回客户端时仍需要能够访问它。因此,请勿使用using (var stream = …)
块。 Web API将为您配置流。
确保流的当前位置设置为0(即流的数据的开头)。在上面的示例中,这是给定的,因为您只是刚刚打开文件。但是,在其他情况下(例如,当您首次将某些二进制数据写入MemoryStream
时),请务必stream.Seek(0, SeekOrigin.Begin);
或设置stream.Position = 0;
使用文件流,明确指定FileAccess.Read
权限可以帮助防止Web服务器上的访问权限问题; IIS应用程序池帐户通常只具有对wwwroot的读/列/执行访问权限。
答案 1 :(得分:128)
对于 Web API 2 ,您可以实施IHttpActionResult
。这是我的:
using System;
using System.IO;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading;
using System.Threading.Tasks;
using System.Web;
using System.Web.Http;
class FileResult : IHttpActionResult
{
private readonly string _filePath;
private readonly string _contentType;
public FileResult(string filePath, string contentType = null)
{
if (filePath == null) throw new ArgumentNullException("filePath");
_filePath = filePath;
_contentType = contentType;
}
public Task<HttpResponseMessage> ExecuteAsync(CancellationToken cancellationToken)
{
var response = new HttpResponseMessage(HttpStatusCode.OK)
{
Content = new StreamContent(File.OpenRead(_filePath))
};
var contentType = _contentType ?? MimeMapping.GetMimeMapping(Path.GetExtension(_filePath));
response.Content.Headers.ContentType = new MediaTypeHeaderValue(contentType);
return Task.FromResult(response);
}
}
然后在您的控制器中出现类似的内容:
[Route("Images/{*imagePath}")]
public IHttpActionResult GetImage(string imagePath)
{
var serverPath = Path.Combine(_rootPath, imagePath);
var fileInfo = new FileInfo(serverPath);
return !fileInfo.Exists
? (IHttpActionResult) NotFound()
: new FileResult(fileInfo.FullName);
}
这里有一种方法可以告诉IIS忽略具有扩展名的请求,以便请求将其发送给控制器:
<!-- web.config -->
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
答案 2 :(得分:8)
虽然建议的解决方案工作正常,但还有另一种方法可以从控制器返回一个字节数组,并且响应流格式正确:
不幸的是,WebApi不包含&#34; application / octet-stream&#34;的任何格式化程序。 GitHub上有一个实现:BinaryMediaTypeFormatter(有一些小的改编使它适用于webapi 2,方法签名改变了。)
您可以将此格式化程序添加到全局配置中:
HttpConfiguration config;
// ...
config.Formatters.Add(new BinaryMediaTypeFormatter(false));
如果请求指定了正确的Accept标头,WebApi现在应该使用BinaryMediaTypeFormatter
。
我更喜欢这个解决方案,因为返回byte []的动作控制器更容易测试。但是,另一种解决方案允许您更好地控制是否要返回另一种内容类型而不是&#34; application / octet-stream&#34; (例如&#34; image / gif&#34;)。
答案 3 :(得分:7)
对于在使用接受的答案中的方法下载相当大的文件时多次调用API问题的任何人,请将响应缓冲设置为true System.Web.HttpContext.Current.Response.Buffer = true;
这可确保在将二进制内容发送到客户端之前在服务器端缓冲整个二进制内容。否则,您将看到多个请求被发送到控制器,如果您没有正确处理它,该文件将会损坏。
答案 4 :(得分:6)
您正在使用的重载设置序列化格式化程序的枚举。您需要明确指定内容类型:
httpResponseMessage.Content.Headers.ContentType = new MediaTypeHeaderValue("application/octet-stream");
答案 5 :(得分:3)
你可以尝试
httpResponseMessage.Content.Headers.Add("Content-Type", "application/octet-stream");
答案 6 :(得分:2)
您可以在API控制器方法中使用IActionResult接口,就像这样...
[HttpGet("GetReportData/{year}")]
public async Task<IActionResult> GetReportData(int year)
{
// Render Excel document in memory and return as Byte[]
Byte[] file = await this._reportDao.RenderReportAsExcel(year);
return File(file, "application/vnd.openxmlformats", "fileName.xlsx");
}
此示例已简化,但应该理解。在.NET Core中,此过程比.NET的早期版本 so 简单得多-即,无需设置响应类型,内容,标头等。
当然,文件和扩展名的MIME类型将取决于个人需求。
参考:SO Post Answer,@ NKosi
答案 7 :(得分:0)
您可以尝试以下代码段
httpResponseMessage.Content.Headers.Add("Content-Type", "application/octet-stream");
希望它会为您服务。