使用C#将文件“即时”写入客户端

前端之家收集整理的这篇文章主要介绍了使用C#将文件“即时”写入客户端前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用C#和ASP.NET 2.5.

我想要一种简单的方法来动态生成文件”(比如本例中的csv文件)并将其传输到客户端而不实际将其写入服务器文件系统.

解决方法

经过一番搜索和反复试验,我开发了以下内容.它似乎完全适合该法案.它应该非常容易适应 PHP或任何其他服务器端软件,因为它主要涉及修改标头.
protected void streamToResponse()
{
    Response.Clear();
    Response.AddHeader("content-disposition","attachment; filename=testfile.csv");
    Response.AddHeader("content-type","text/csv");

    using(StreamWriter writer = new StreamWriter(Response.OutputStream))
    {
        writer.WriteLine("col1,col2,col3");
        writer.WriteLine("1,2,3");
    }
    Response.End();
}
原文链接:https://www.f2er.com/csharp/100911.html

猜你在找的C#相关文章