Asp.net下載文件FileStream下載

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

  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();
相關文章
相關標籤/搜索