Asp.net下载文件FileStream下载

asp.net下载文件注意:

1,使用FileInfo方式下载,FileStream在本地还可以,放到IIS就不行了。(不知道是我没有设置好还是什么情况,总之鉴定结果FileInfo通过,FileStream不行)

2,注意IIS对文件的读取权限设置。

下面贴出两种方式的写法,如果FileStream也可以请大神指点

FileStream方式

               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();

FileInfo方式:

string fileName = "ECLink_Product_template.xlsx";//客户端保存的文件名     
string filePath = Server.MapPath("~/UploadFile/ProductTemp/ECLink_Product_template.xlsx");//路径   

  FileInfo fileInfo = new FileInfo(filePath);
  Response.Clear();
  Response.ClearContent();
  Response.ClearHeaders();
  Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName);
  Response.AddHeader("Content-Length", fileInfo.Length.ToString());
  Response.AddHeader("Content-Transfer-Encoding", "binary");
  Response.ContentType = "application/octet-stream";
  Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312");
  Response.WriteFile(fileInfo.FullName);
  Response.Flush();
  Response.End();


你可能感兴趣的:(asp.net,上传,filestream,fileinfo)