萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> asp.net編程 >> asp.net中導出excel數據的方法匯總

asp.net中導出excel數據的方法匯總

   1、由dataset生成

 代碼如下   public void CreateExcel(DataSet ds,string typeid,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=""; 
   int i=0; 
 
   //定義表對象與行對像,同時用DataSet對其值進行初始化 
   DataTable dt=ds.Tables[0]; 
   DataRow[] myRow=dt.Select("");  
   // typeid=="1"時導出為EXCEL格式文件;typeid=="2"時導出為XML格式文件 
   if(typeid=="1") 
   { 
    //取得數據表各列標題,各標題之間以t分割,最後一個列標題後加回車符 
    for(i=0;i     colHeaders+=dt.Columns[i].Caption.ToString()+"t"; 
    colHeaders +=dt.Columns[i].Caption.ToString() +"n";    
    //向HTTP輸出流中寫入取得的數據信息 
    resp.Write(colHeaders);  
    //逐行處理數據   
    foreach(DataRow row in myRow) 
    { 
     //在當前行中,逐列獲得數據,數據之間以t分割,結束時加回車符n 
     for(i=0;i      ls_item +=row[i].ToString() + "t";      
     ls_item += row[i].ToString() +"n"; 
     //當前行數據寫入HTTP輸出流,並且置空ls_item以便下行數據     
     resp.Write(ls_item); 
     ls_item=""; 
    } 
   } 
   else 
   { 
    if(typeid=="2") 
    {  
     //從DataSet中直接導出XML數據並且寫到HTTP輸出流中 
     resp.Write(ds.GetXml()); 
    }     
   } 
   //寫緩沖區中的數據到HTTP頭文件中 
   resp.End(); 
 
 
  } 

  2、由datagrid生成

 代碼如下   public void ToExcel(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";//image/JPEG;text/HTML;image/GIF;vnd.ms-excel/msword 
   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(); 
  } 
 
用法:ToExcel(datagrid1); 
 

  3、這個用dataview

 代碼如下  

public void OutputExcel(DataView dv,string str) 

   // 
   // TODO: 在此處添加構造函數邏輯 
   // 
                           //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.C

copyright © 萬盛學電腦網 all rights reserved