HttpRequest获取文件流,HttpResponse输出文件流
生活随笔
收集整理的這篇文章主要介紹了
HttpRequest获取文件流,HttpResponse输出文件流
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
HttpResponse輸出文件:Response.Clear();Response.ContentType = "application/octet-stream";//通知瀏覽器下載文件而不是打開
?? ? ? ? ? ?Response.AddHeader("Content-Disposition", "attachment; ? filename=aaa.csv");?
var sw = new StreamWriter(response.OutputStream);//cc.Write<CustomerData>(list, sw, csvFileDesc);sw.Flush();?? ? ? ? ? ?sw.Close();?
?
?HttpRequest獲取文件:
?var sr = new StreamReader(request.InputStream);?
?
轉(zhuǎn)載于:https://www.cnblogs.com/ycdx2001/archive/2011/03/16/1985684.html
總結(jié)
以上是生活随笔為你收集整理的HttpRequest获取文件流,HttpResponse输出文件流的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: html文档中media=all是什么
- 下一篇: 取得前九条之后的数据