程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> asp.net-二進制流轉化為文件 怎麼從數據中讀取

asp.net-二進制流轉化為文件 怎麼從數據中讀取

編輯:編程綜合問答
二進制流轉化為文件 怎麼從數據中讀取

string filePath = @"D:\";
string fileName = @"1.txt";
FileStream fs = new FileStream(filePath + fileName, FileMode.Open);
byte[] bytes = new byte[(int)fs.Length];
fs.Read(bytes, 0, bytes.Length);
fs.Close();
Response.Charset = "UTF-8";
Response.ContentEncoding = System.Text.Encoding.GetEncoding("UTF-8");
Response.ContentType = "application/octet-stream";
Response.AddHeader("Content-Disposition", "attachment;filename=" + Server.UrlEncode(fileName));
Response.BinaryWrite(bytes);
Response.Flush();
Response.End();

        return new EmptyResult();

最佳回答:


http://www.cnblogs.com/ldp615/archive/2010/09/17/asp-net-mvc-file-result.html

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved