asp.netDataTable如何導(dǎo)出Excel自定義列名-創(chuàng)新互聯(lián)

這篇文章主要為大家展示了“asp.net DataTable如何導(dǎo)出Excel自定義列名”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“asp.net DataTable如何導(dǎo)出Excel自定義列名”這篇文章吧。

成都創(chuàng)新互聯(lián)公司是一家專注于網(wǎng)站制作、做網(wǎng)站聯(lián)通服務(wù)器托管的網(wǎng)絡(luò)公司,有著豐富的建站經(jīng)驗(yàn)和案例。

1、添加引用NPOI.dll

2、cs文件頭部添加

using NPOI.HSSF.UserModel;
  using NPOI.SS.UserModel;
  using System.IO;

3、代碼如下:

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Configuration;
using WSC.Framework;
using System.Data;
using WSC.Common;
using NPOI.HSSF.UserModel;
using NPOI.SS.UserModel;
using System.IO;
public partial class WorkManage_SMT_SMTMaintain : WSC.FramePage
{
 SQLHelper sql = new SQLHelper(ConfigurationManager.AppSettings["LocalConnectionString"].ToString());
 protected void Page_Load(object sender, EventArgs e)
 {
 if (!IsPostBack)
 {
 }
 }
 protected void btnReport_Click(object sender, EventArgs e)
 {
 string strSql = string.Format(@" select smtpicsmdl.model,smtmdl.submodel,pcbapn,PrdType,cycle,cast((12*3600/cycle) as int) as 'rate',onlineMan,offlineMan,reserve3,ptype_desc,minsqg,maxsqg from smtmdl left join smtpicsmdl on smtpicsmdl.submodel=smtmdl.submodel where pcbapn = '{0}' order by smtpicsmdl.model asc,smtpicsmdl.submodel asc,PrdType asc", this.txtMdmitem.Text.Trim());
 DataTable dt = sql.Query(strSql);
 string strFileName = "SMT機(jī)種信息" + DateTime.Now.ToString("yyyyMMddHHmmss");
 ExportExcel(dt, strFileName, "SMT機(jī)種信息");
 }
 /// <summary>
 /// DataTable導(dǎo)出Excel
 /// </summary>
 /// <param name="dt">datatable數(shù)據(jù)源</param>
 /// <param name="strFileName">文件名</param>
 /// <param name="strSheetName">工作簿名</param>
 public void ExportExcel(DataTable dt, string strFileName, string strSheetName)
 {
 HSSFWorkbook book = new HSSFWorkbook();
 ISheet sheet = book.CreateSheet(strSheetName);
 
 IRow headerrow = sheet.CreateRow(0);
 ICellStyle style = book.CreateCellStyle();
 style.Alignment = HorizontalAlignment.Center;
 style.VerticalAlignment = VerticalAlignment.Center;
 
 HSSFRow dataRow = (HSSFRow)sheet.CreateRow(0);
 string strColumns = "主機(jī)種,子機(jī)種,5E料號(hào),產(chǎn)線類型,CT(S),rate/12H,線上人力,線外人力,總?cè)肆?面別,刮刀下限,刮刀上限";
 string[] strArry = strColumns.Split(',');
 for (int i = 0; i < strArry.Length; i++)
 {
  dataRow.CreateCell(i).SetCellValue(strArry[i]);
  dataRow.GetCell(i).CellStyle = style;
 }
 for (int i = 0; i < dt.Rows.Count; i++)
 {
  dataRow = (HSSFRow)sheet.CreateRow(i + 1);
  for (int j = 0; j < dt.Columns.Count; j++)
  {
  string ValueType = "";
  string Value = "";
  if (dt.Rows[i][j].ToString() != null)
  {
   ValueType = dt.Rows[i][j].GetType().ToString();
   Value = dt.Rows[i][j].ToString();
  }
  switch (ValueType)
  {
   case "System.String"://字符串類型
   dataRow.CreateCell(j).SetCellValue(Value);
   break;
   case "System.DateTime"://日期類型
   System.DateTime dateV;
   System.DateTime.TryParse(Value, out dateV);
   dataRow.CreateCell(j).SetCellValue(dateV);
   break;
   case "System.Boolean"://布爾型
   bool boolV = false;
   bool.TryParse(Value, out boolV);
   dataRow.CreateCell(j).SetCellValue(boolV);
   break;
   case "System.Int16"://整型
   case "System.Int32":
   case "System.Int64":
   case "System.Byte":
   int intV = 0;
   int.TryParse(Value, out intV);
   dataRow.CreateCell(j).SetCellValue(intV);
   break;
   case "System.Decimal"://浮點(diǎn)型
   case "System.Double":
   double doubV = 0;
   double.TryParse(Value, out doubV);
   dataRow.CreateCell(j).SetCellValue(doubV);
   break;
   case "System.DBNull"://空值處理
   dataRow.CreateCell(j).SetCellValue("");
   break;
   default:
   dataRow.CreateCell(j).SetCellValue("");
   break;
  }
  dataRow.GetCell(j).CellStyle = style;
  //設(shè)置寬度
  sheet.SetColumnWidth(j, (Value.Length + 10) * 256);
  }
 }
 MemoryStream ms = new MemoryStream();
 book.Write(ms);
 Response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.xls", HttpUtility.UrlEncode(strFileName, System.Text.Encoding.UTF8)));
 Response.BinaryWrite(ms.ToArray());
 Response.End();
 book = null;
 ms.Close();
 ms.Dispose();
 }
}

以上是“asp.net DataTable如何導(dǎo)出Excel自定義列名”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!

本文標(biāo)題:asp.netDataTable如何導(dǎo)出Excel自定義列名-創(chuàng)新互聯(lián)
鏈接地址:http://muchs.cn/article18/dpsjgp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作網(wǎng)站收錄、網(wǎng)頁(yè)設(shè)計(jì)公司、搜索引擎優(yōu)化商城網(wǎng)站、做網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)公司