c# webapi处理请求文件接口返回的Content-Type →text/plain
通过Header中的Content-Disposition属性获取文件名称和扩展名称HttpWebResponseWebClient
前提是相应的Headers有这个值
通过Header中的Content-Disposition属性获取文件名称和扩展名称
HttpWebResponse
HttpWebResponse response
= request
.GetResponse() as HttpWebResponse
;
string filename
= response
.GetResponseHeader("Content-Disposition");
string exp
= filename
.Split('.')[1];
WebClient
WebClient client
= new WebClient();
string filenamewc
=client
.ResponseHeaders
["Content-Disposition"];
前提是相应的Headers有这个值
转载请注明原文地址:https://tech.qufami.com/read-8271.html