Web API 2获取ZIP文件返回奇怪的符号

时间:2019-01-29 17:27:18

标签: c# rest asp.net-web-api2

当我试图通过API从自己的目录中获取一个zip文件时,我总是会得到这个随机或奇怪的符号。

var path = D:\\Source\\API\\TEST\\XMLPDF\\test.zip;
HttpResponseMessage reponse = new HttpResponseMessage(HttpStatusCode.OK);
var stream = new FileStream(path, FileMode.Open, FileAccess.Read);
reponse.Content = new StreamContent(stream);
reponse.Content.Headers.ContentType =
    new MediaTypeHeaderValue("application/octet-stream");
return reponse;

我已经使用上面的代码返回了zip文件。

enter image description here

我已经添加了邮递员返回正文的屏幕截图。

有人遇到过这种问题吗?

0 个答案:

没有答案