asp.net下载文件注意: 浏览器
1,使用FileInfo方式下载,FileStream在本地还能够,放到IIS就不行了。(不知道是我没有设置好仍是什么状况,总之鉴定结果FileInfo经过,FileStream不行) app
2,注意IIS对文件的读取权限设置。 asp.net
下面贴出两种方式的写法,若是FileStream也能够请大神指点 spa
FileStream方式 .net
string fileName = "ECLink_Product_template.xlsx";//客户端保存的文件名
string filePath = Server.MapPath("~/UploadFile/ProductTemp/ECLink_Product_template.xlsx");//路径
//以字符流的形式下载文件
FileStream fs = new FileStream(filePath, FileMode.Open);
byte[] bytes = new byte[(int)fs.Length];
fs.Read(bytes, 0, bytes.Length);
fs.Close();
Response.ContentType = "application/octet-stream";
//通知浏览器下载文件而不是打开
Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
Response.BinaryWrite(bytes);
Response.Flush();
Response.End();
code
FileInfo方式: string
string fileName = "ECLink_Product_template.xlsx";//客户端保存的文件名
string filePath = Server.MapPath("~/UploadFile/ProductTemp/ECLink_Product_template.xlsx");//路径 it