IT貓撲網(wǎng):您身邊最放心的安全下載站! 最新更新|軟件分類|軟件專題|手機(jī)版|論壇轉(zhuǎn)貼|軟件發(fā)布

您當(dāng)前所在位置: 首頁網(wǎng)絡(luò)編程.Net編程 → asp.net里導(dǎo)出excel表方法匯總

asp.net里導(dǎo)出excel表方法匯總

時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)

  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對其值進(jìn)行初始化

  DataTable dt=ds.Tables[0];

  DataRow[] myRow=dt.Select("");

  // typeid=="1"時導(dǎo)出為EXCEL格式文件;typeid=="2"時導(dǎo)出為XML格式文件

  if(typeid=="1")

  {

  //取得數(shù)據(jù)表各列標(biāo)題,各標(biāo)題之間以\t分割,最后一個列標(biāo)題后加回車符

  for(i=0;i colHeaders+=dt.Columns[i].Caption.ToString()+"\t";

  colHeaders +=dt.Columns[i].Caption.ToString() +"\n";

  //向HTTP輸出流中寫入取得的數(shù)據(jù)信息

  resp.Write(colHeaders);

  //逐行處理數(shù)據(jù)

  foreach(DataRow row in myRow)

  {

  //在當(dāng)前行中,逐列獲得數(shù)據(jù),數(shù)據(jù)之間以\t分割,結(jié)束時加回車符\n

  for(i=0;i ls_item +=row[i].ToString() + "\t";

  ls_item += row[i].ToString() +"\n";

  //當(dāng)前行數(shù)據(jù)寫入HTTP輸出流,并且置空ls_item以便下行數(shù)據(jù)

  resp.Write(ls_item);

  ls_item="";

  }

  }

  else

  {

  if(typeid=="2")

  {

  //從DataSet中直接導(dǎo)出XML數(shù)據(jù)并且寫到HTTP輸出流中

  resp.Write(ds.GetXml());

  }

  }

  //寫緩沖區(qū)中的數(shù)據(jù)到HTTP頭文件中

  resp.End();

  }

  2、使用微軟的C++寫的ACTIVEX控件:http://download.microsoft.com/download/OfficeXPDev/sample/1.0/WIN98MeXP/EN-US/Dsoframerctl.exe

  3、由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);

  4、這個用dataview ,代碼好長

  public void OutputExcel(DataView dv,string str)

  {

  //

  // TODO: 在此處添加構(gòu)造函數(shù)邏輯

  //

  //dv為要輸出到Excel的數(shù)據(jù),str為標(biāo)題名稱

  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;

  //

  //取得標(biāo)題

  //

  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;//設(shè)置標(biāo)題格式為居中對齊

  }

  //

  //取得表格中的數(shù)據(jù)

  //

  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;//設(shè)置日期型的字段格式為居中對齊

  }

  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;//設(shè)置字符型的字段格式為居中對齊

  }

  else

  {

  excel.Cells[rowIndex,colIndex] = row[col.ColumnName].ToString();

  }

  }

  }

  //

  //加載一個合計(jì)行

  //

  int rowSum = rowIndex + 1;

  int colSum = 2;

  excel.Cells[rowSum,2] = "合計(jì)";

  xSt.get_Range(excel.Cells[rowSum,2],excel.Cells[rowSum,2]).HorizontalAlignment = XlHAlign.xlHAlignCenter;

  //

  //設(shè)置選中的部分的顏色

  //

  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;//設(shè)置為淺黃色,共計(jì)有56種

  //

  //取得整個報(bào)表的標(biāo)題

  //

  excel.Cells[2,2] = str;

  //

  //設(shè)置整個報(bào)表的標(biāo)題格式

  //

  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;

  //

  //設(shè)置報(bào)表表格為最適應(yīng)寬度

  //

  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();

  //

  //設(shè)置整個報(bào)表的標(biāo)題為跨列居中

  //

  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;//設(shè)置左邊線加粗

  xSt.get_Range(excel.Cells[4,2],excel.Cells[4,colIndex]).Borders[XlBordersIndex.xlEdgeTop].Weight = XlBorderWeight.xlThick;//設(shè)置上邊線加粗

  xSt.get_Range(excel.Cells[4,colIndex],excel.Cells[rowSum,colIndex]).Borders[XlBordersIndex.xlEdgeRight].Weight = XlBorderWeight.xlThick;//設(shè)置右邊線加粗

  xSt.get_Range(excel.Cells[rowSum,2],excel.Cells[rowSum,colIndex]).Borders[XlBordersIndex.xlEdgeBottom].Weight = XlBorderWeight.xlThick;//設(shè)置下邊線加粗

  //

  //顯示效果

  //

  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

關(guān)鍵詞標(biāo)簽:asp.net,excel

相關(guān)閱讀

文章評論
發(fā)表評論

熱門文章 誅仙3飛升任務(wù)怎么做-誅仙3飛升任務(wù)流程最新2022 誅仙3飛升任務(wù)怎么做-誅仙3飛升任務(wù)流程最新2022 鐘離圣遺物推薦-原神鐘離圣遺物詞條 鐘離圣遺物推薦-原神鐘離圣遺物詞條 解決方法:應(yīng)用程序“DEFAULT WEB SITE”中的服務(wù)器錯誤 解決方法:應(yīng)用程序“DEFAULT WEB SITE”中的服務(wù)器錯誤 使用aspnet_regiis.exe 重新注冊.NET Framework 使用aspnet_regiis.exe 重新注冊.NET Framework

相關(guān)下載

    人氣排行 誅仙3飛升任務(wù)怎么做-誅仙3飛升任務(wù)流程最新2022 asp.net表單提交方法GET\POST 在ASP.NET中如何判斷用戶IE瀏覽器的版本 Asp.net中messagebox的實(shí)現(xiàn)方法 Asp.net中的web.config配置 在ASP.NET MVC中實(shí)現(xiàn)大文件異步上傳 asp.net獲取URL和IP地址 FileUpload上傳多文件出現(xiàn)錯誤的解決方法