当我试图通过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文件。
我已经添加了邮递员返回正文的屏幕截图。
有人遇到过这种问题吗?