zoukankan      html  css  js  c++  java
  • 将DataTable导出到Excel

       /// <summary>        

    /// 导出Excel        

    /// </summary>        

    /// <param name="dtData"></param>        

    public void DataTable2Excel(System.Data.DataTable dtData)        

    {            

             System.Web.UI.WebControls.DataGrid dgExport = null;            

             // 当前对话            

             System.Web.HttpContext curContext = System.Web.HttpContext.Current;            

             // IO用于导出并返回excel文件            

               System.IO.StringWriter strWriter = null;            

           System.Web.UI.HtmlTextWriter htmlWriter = null;

              if (dtData != null)            

              {                

               // 设置编码和附件格式                

                 curContext.Response.ContentType = "application/vnd.ms-excel";

                    curContext.Response.ContentEncoding = System.Text.Encoding.UTF8;

                    curContext.Response.Charset = "";

                    // 导出excel文件

                    strWriter = new System.IO.StringWriter();

                    htmlWriter = new System.Web.UI.HtmlTextWriter(strWriter);

                    // 为了解决dgData中可能进行了分页的情况,需要重新定义一个无分页的DataGrid

                    dgExport = new System.Web.UI.WebControls.DataGrid();

                    dgExport.DataSource = dtData.DefaultView;

                    dgExport.AllowPaging = false;

                    dgExport.DataBind();

                    // 返回客户端

                    dgExport.RenderControl(htmlWriter);

                    curContext.Response.Write(strWriter.ToString());

                    curContext.Response.End();

                }

            }

  • 相关阅读:
    完整版excel上传导入读写批量数据并将反馈结果写入远程exel中
    将数据写入已有的excel文件
    微服务项目启动问题
    通过POI实现上传EXCEL的批量读取数据写入数据库
    [转] VLAN原理详解
    [转载]git tag — 标签相关操作
    [转载]SQLite3性能优化
    [转载]提升SQLite数据插入效率低、速度慢的方法
    [转载]sqlite3遇到database is locked问题的完美解决
    一个Linux下C线程池的实现(转)
  • 原文地址:https://www.cnblogs.com/conghua/p/3446504.html
Copyright © 2011-2022 走看看