程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> 關於C# >> C# 將數據導出到Execl匯總大全

C# 將數據導出到Execl匯總大全

編輯:關於C#
 

一、asp.net中導出Execl的方法:

在asp.net中導出Execl有兩種方法,一種是將導出的文件存放在服務器某個文件夾下面,然後將文件地址輸出在浏覽器上;一種是將

文件直接將文件輸出流寫給浏覽器。在Response輸出時,t分隔的數據,導出execl時,等價於分列,n等價於換行。
1、將整個html全部輸出execl

此法將html中所有的內容,如按鈕,表格,圖片等全部輸出到Execl中。
    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控件中的數據導出Execl

上述方法雖然實現了導出的功能,但同時把按鈕、分頁框等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中的數據導出Execl

有了上邊的思路,就是將在導出的信息,輸出(Response)客戶端,這樣就可以導出了。那麼把DataSet中的數據導出,也就是把

DataSet中的表中的各行信息,以ms-excel的格式Response到http流,這樣就OK了。說明:參數ds應為填充有數據表的DataSet,文件

名是全名,包括後綴名,如execl2006.xls

public void CreateExcel(DataSet ds,string FileName)
{
HttpResponse resp;
resp = Page.Response;
resp.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
resp.AppendHeader("Content-Disposition", "attachment;filename="+FileName);   
string colHeaders= "", ls_item="";  

//定義表對象與行對象,同時用DataSet對其值進行初始化
DataTable dt=ds.Tables[0];
DataRow[] myRow=dt.Select();//可以類似dt.Select("id>10")之形式達到數據篩選目的
        int i=0;
        int cl=dt.Columns.Count;
   
//取得數據表各列標題,各標題之間以t分割,最後一個列標題後加回車符
for(i=0;i<cl;i++)
{
if(i==(cl-1))//最後一列,加n
{
colHeaders +=dt.Columns[i].Caption.ToString() +"n";
}
else
{
colHeaders+=dt.Columns[i].Caption.ToString()+"t";
}
      
}
resp.Write(colHeaders);
//向HTTP輸出流中寫入取得的數據信息
  
//逐行處理數據  
foreach(DataRow row in myRow)
{    
//當前行數據寫入HTTP輸出流,並且置空ls_item以便下行數據    
for(i=0;i<cl;i++)
{
if(i==(cl-1))//最後一列,加n
{
ls_item +=row[i].ToString()+"n";
}
else
{
ls_item+=row[i].ToString()+"t";
}

}
resp.Write(ls_item);
ls_item="";
   
}   
resp.End();
}

4、將dataview導出execl
若想實現更加富於變化或者行列不規則的execl導出時,可用本法。
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(false, null,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();
}

  
   上面的方面,均將要導出的execl數據,直接給浏覽器輸出文件流,下面的方法是首先將其存到服務器的某個文件夾中,然後把文

件發送到客戶端。這樣可以持久的把導出的文件存起來,以便實現其它功能。
5、將execl文件導出到服務器上,再下載。

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