zoukankan      html  css  js  c++  java
  • 转载:C# 将数据导出到Excel汇总

    在这里在下只是总结一下别人的方法,整理的好一点方便大家使用,呵呵!!!

    在asp.net中导出Excel有两种方法,一种是将导出的文件存放在服务器某个文件夹下面,然后将文件地址输出在浏览器上;一种是将文件直接将文件输出流写给浏览器。在Response输出时,t分隔的数据,导出Excel时,等价于分列,n等价于换行。
    1、将整个html全部输出Excel

    此法将html中所有的内容,如按钮,表格,图片等全部输出到Excel中。

       

     Response.Clear();     
        Response.Buffer
    =   true;     
        Response.AppendHeader(
    "Content-Disposition","attachment;filename="+DateTime.Now.ToString("yyyyMMdd")+".xls");           
        Response.ContentEncoding
    =System.Text.Encoding.UTF8;   
        Response.ContentType   
    =   "application/vnd.ms-excel";   
        
    this.EnableViewState   =   false;  

    这里我们利用了ContentType属性,它默认的属性为text/html,这时将输出为超文本,即我们常见的网页格式到客户端,如果改为ms-excel将将输出excel格式,也就是说以电子表格的格式输出到客户端,这时浏览器将提示你下载保存。ContentType的属性还包括:image/JPEG;text/HTML;image/GIF;vnd.ms-excel/msword 。同理,我们也可以输出(导出)图片、word文档等。下面的方法,也均用了这个属性。

    2、将DataGrid控件中的数据导出Excel

    上述方法虽然实现了导出的功能,但同时把按钮、分页框等html中的所有输出信息导了进去。而我们一般要导出的是数据,DataGrid控件上的数据。

    System.Web.UI.Control ctl=this.DataGrid1;
    //DataGrid1是你在窗体中拖放的控件
    HttpContext.Current.Response.AppendHeader("Content-Disposition","attachment;filename=Excel.xls"); 
    HttpContext.Current.Response.Charset 
    ="UTF-8";     
    HttpContext.Current.Response.ContentEncoding 
    =System.Text.Encoding.Default; 
    HttpContext.Current.Response.ContentType 
    ="application/ms-excel";
    ctl.Page.EnableViewState 
    =false;    
    System.IO.StringWriter tw 
    = new System.IO.StringWriter() ; 
    System.Web.UI.HtmlTextWriter hw 
    = new System.Web.UI.HtmlTextWriter (tw); 
    ctl.RenderControl(hw); 
    HttpContext.Current.Response.Write(tw.ToString()); 
    HttpContext.Current.Response.End();


    如果你的DataGrid用了分页,它导出的是当前页的信息,也就是它导出的是DataGrid中显示的信息。而不是你select语句的全部信息。

    为方便使用,写成方法如下: 


    public void DGToExcel(System.Web.UI.Control ctl)   

       HttpContext.Current.Response.AppendHeader(
    "Content-Disposition","attachment;filename=Excel.xls"); 
       HttpContext.Current.Response.Charset 
    ="UTF-8";     
       HttpContext.Current.Response.ContentEncoding 
    =System.Text.Encoding.Default; 
       HttpContext.Current.Response.ContentType 
    ="application/ms-excel";
       ctl.Page.EnableViewState 
    =false;    
       System.IO.StringWriter tw 
    = new System.IO.StringWriter() ; 
       System.Web.UI.HtmlTextWriter hw 
    = new System.Web.UI.HtmlTextWriter (tw); 
       ctl.RenderControl(hw); 
       HttpContext.Current.Response.Write(tw.ToString()); 
       HttpContext.Current.Response.End(); 
    }


       用法:DGToExcel(datagrid1);
      
    3、将DataSet中的数据导出Excel

    有了上边的思路,就是将在导出的信息,输出(Response)客户端,这样就可以导出了。那么把DataSet中的数据导出,也就是把DataSet中的表中的各行信息,以ms-excel的格式Response到http流,这样就OK了。说明:参数ds应为填充有数据表的DataSet,文件名是全名,包括后缀名,如Excel2006.xls


    Code

    4、将dataview导出excel
    若想实现更加富于变化或者行列不规则的excel导出时,可用本法。

    public void OutputExcel(DataView dv,string str) 

       
    //dv为要输出到Excel的数据,str为标题名称 
       GC.Collect(); 
       Application excel;
    // = new Application(); 
       int rowIndex=4
       
    int colIndex=1

       _Workbook xBk; 
       _Worksheet xSt; 

       excel
    = new ApplicationClass(); 
       
       xBk 
    = excel.Workbooks.Add(true); 
        
       xSt 
    = (_Worksheet)xBk.ActiveSheet; 

       
    // 
       
    //取得标题 
       
    // 
       foreach(DataColumn col in dv.Table.Columns) 
       { 
        colIndex
    ++
        excel.Cells[
    4,colIndex] = col.ColumnName; 
        xSt.get_Range(excel.Cells[
    4,colIndex],excel.Cells[4,colIndex]).HorizontalAlignment = XlVAlign.xlVAlignCenter;//设置标题格式为居中对齐 
       } 

       
    // 
       
    //取得表格中的数据 
       
    // 
       foreach(DataRowView row in dv) 
       { 
        rowIndex 
    ++
        colIndex 
    = 1
        
    foreach(DataColumn col in dv.Table.Columns) 
        { 
         colIndex 
    ++
         
    if(col.DataType == System.Type.GetType("System.DateTime")) 
         { 
          excel.Cells[rowIndex,colIndex] 
    = (Convert.ToDateTime(row[col.ColumnName].ToString())).ToString("yyyy-MM-dd"); 
          xSt.get_Range(excel.Cells[rowIndex,colIndex],excel.Cells[rowIndex,colIndex]).HorizontalAlignment 
    = XlVAlign.xlVAlignCenter;//设置日期型的字段格式为居中对齐 
         } 
         
    else 
          
    if(col.DataType == System.Type.GetType("System.String")) 
         { 
          excel.Cells[rowIndex,colIndex] 
    = "'"+row[col.ColumnName].ToString(); 
          xSt.get_Range(excel.Cells[rowIndex,colIndex],excel.Cells[rowIndex,colIndex]).HorizontalAlignment 
    = XlVAlign.xlVAlignCenter;//设置字符型的字段格式为居中对齐 
         } 
         
    else 
         { 
          excel.Cells[rowIndex,colIndex] 
    = row[col.ColumnName].ToString(); 
         } 
        } 
       } 
       
    // 
       
    //加载一个合计行 
       
    // 
       int rowSum = rowIndex + 1
       
    int colSum = 2
       excel.Cells[rowSum,
    2= "合计"
       xSt.get_Range(excel.Cells[rowSum,
    2],excel.Cells[rowSum,2]).HorizontalAlignment = XlHAlign.xlHAlignCenter; 
       
    // 
       
    //设置选中的部分的颜色 
       
    // 
       xSt.get_Range(excel.Cells[rowSum,colSum],excel.Cells[rowSum,colIndex]).Select(); 
       xSt.get_Range(excel.Cells[rowSum,colSum],excel.Cells[rowSum,colIndex]).Interior.ColorIndex 
    = 19;//设置为浅黄色,共计有56种 
       
    // 
       
    //取得整个报表的标题 
       
    // 
       excel.Cells[2,2= str; 
       
    // 
       
    //设置整个报表的标题格式 
       
    // 
       xSt.get_Range(excel.Cells[2,2],excel.Cells[2,2]).Font.Bold = true
       xSt.get_Range(excel.Cells[
    2,2],excel.Cells[2,2]).Font.Size = 22
       
    // 
       
    //设置报表表格为最适应宽度 
       
    // 
       xSt.get_Range(excel.Cells[4,2],excel.Cells[rowSum,colIndex]).Select(); 
       xSt.get_Range(excel.Cells[
    4,2],excel.Cells[rowSum,colIndex]).Columns.AutoFit(); 
       
    // 
       
    //设置整个报表的标题为跨列居中 
       
    // 
       xSt.get_Range(excel.Cells[2,2],excel.Cells[2,colIndex]).Select(); 
       xSt.get_Range(excel.Cells[
    2,2],excel.Cells[2,colIndex]).HorizontalAlignment = XlHAlign.xlHAlignCenterAcrossSelection; 
       
    // 
       
    //绘制边框 
       
    // 
       xSt.get_Range(excel.Cells[4,2],excel.Cells[rowSum,colIndex]).Borders.LineStyle = 1
       xSt.get_Range(excel.Cells[
    4,2],excel.Cells[rowSum,2]).Borders[XlBordersIndex.xlEdgeLeft].Weight = XlBorderWeight.xlThick;//设置左边线加粗 
       xSt.get_Range(excel.Cells[4,2],excel.Cells[4,colIndex]).Borders[XlBordersIndex.xlEdgeTop].Weight = XlBorderWeight.xlThick;//设置上边线加粗 
       xSt.get_Range(excel.Cells[4,colIndex],excel.Cells[rowSum,colIndex]).Borders[XlBordersIndex.xlEdgeRight].Weight = XlBorderWeight.xlThick;//设置右边线加粗 
       xSt.get_Range(excel.Cells[rowSum,2],excel.Cells[rowSum,colIndex]).Borders[XlBordersIndex.xlEdgeBottom].Weight = XlBorderWeight.xlThick;//设置下边线加粗 
       
    // 
       
    //显示效果 
       
    // 
       excel.Visible=true

       
    //xSt.Export(Server.MapPath(".")+""+this.xlfile.Text+".xls",SheetExportActionEnum.ssExportActionNone,Microsoft.Office.Interop.OWC.SheetExportFormat.ssExportHTML); 
       xBk.SaveCopyAs(Server.MapPath(".")+""+this.xlfile.Text+".xls"); 

       ds 
    = null
                xBk.Close(
    falsenull,null); 
        
                excel.Quit(); 
                System.Runtime.InteropServices.Marshal.ReleaseComObject(xBk); 
                System.Runtime.InteropServices.Marshal.ReleaseComObject(excel); 
        System.Runtime.InteropServices.Marshal.ReleaseComObject(xSt); 
                xBk 
    = null
                excel 
    = null
       xSt 
    = null
                GC.Collect(); 
       
    string path = Server.MapPath(this.xlfile.Text+".xls"); 

       System.IO.FileInfo file 
    = new System.IO.FileInfo(path); 
       Response.Clear(); 
       Response.Charset
    ="GB2312"
       Response.ContentEncoding
    =System.Text.Encoding.UTF8; 
       
    // 添加头信息,为"文件下载/另存为"对话框指定默认文件名 
       Response.AddHeader("Content-Disposition""attachment; filename=" + Server.UrlEncode(file.Name)); 
       
    // 添加头信息,指定文件大小,让浏览器能够显示下载进度 
       Response.AddHeader("Content-Length", file.Length.ToString()); 
        
       
    // 指定返回的是一个不能被客户端读取的流,必须被下载 
       Response.ContentType = "application/ms-excel"
        
       
    // 把文件流发送到客户端 
       Response.WriteFile(file.FullName); 
       
    // 停止页面的执行 
       
       Response.End(); 
    }



    二、winForm中导出Excel的方法:

    1、方法1:

      
    Code

    2、方法2:


    Code
    5.从DataGridView里导出
    Code
     
    6.把Excel数据读到DataSet里
    代码
     OpenFileDialog dlg = new OpenFileDialog();
                dlg.Filter 
    = "Execl files (*.xls)|*.xls";
                dlg.CheckFileExists 
    = false;
                dlg.CheckPathExists 
    = false;
                dlg.FilterIndex 
    = 0;
                dlg.RestoreDirectory 
    = true;
                dlg.Title 
    = "将Excel文件数据导入到DataSet";
                dlg.ShowDialog();

                DataSet ds 
    = new DataSet();
                
    string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + dlg.FileName.Trim() + ";Extended Properties='Excel 8.0;HDR=False;IMEX=1'";
                
    using (OleDbConnection OleConn = new OleDbConnection(strConn))
                {
                    OleConn.Open();
                    String sql 
    = "SELECT * FROM [Sheet1$]";
                    OleDbDataAdapter OleDaExcel 
    = new OleDbDataAdapter(sql, OleConn);
                    OleDaExcel.Fill(ds);
                    OleConn.Close();
                }

    三、附注:
    虽然都是实现导出excel的功能,但在asp.net和winform的程序中,实现的代码是各不相同的。在asp.net中,是在服务器端读取数据,在服务器端把数据以ms-excel的格式,以Response输出到浏览器(客户端);而在winform中,是把数据读到客户端(因为winform运行端就是客户端),然后调用客户端安装的office组件,将读到的数据写在excel
  • 相关阅读:
    云主机上搭建squid3代理服务器
    常见问题集锦
    [DFNews] Guidance推出EnCase v7.06以及EnCase Imager 7.06
    [计算机取证] JumpLists file names and AppID calculator
    [eDiscovery] The Longterm Preservation of Digital Evidence
    [DFNews] GSI发布EnCase v7.07
    [DFNews] eDEC发布“狼蛛”2.0手机取证系统
    [手机取证] CelleBrite Android Lock Bypass
    [DFNews] CelleBrite发布可视化关联分析软件Link Analysis 1.7
    [DFNews] EnCE认证变化,v6认证及相关课程即将取消
  • 原文地址:https://www.cnblogs.com/xusui/p/2226102.html
Copyright © 2011-2022 走看看