<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
在工作開發中,客戶經常要求資料庫中資料匯出到Excel表格。以前方法是參照office相關元件,如果客戶沒有安裝office,功能就會遇到問題。
現在用Npoi匯出Excel,匯出表格是合併行列,如圖:
匯出的要求:合計列要進行合併,序號一致的要合併。最後一行要合併列。
因為相同序號數量不是固定的,要動態算合併的行數。
合併行列介面:XXX.AddMergedRegion(new CellRangeAddress(開始行, 最後一行, 開始列, 最後一列));
隱藏指定:sheet.SetColumnHidden(cellIndex, true);
參照元件:
NPOI.dll;
NPOI.OOXML.dll;
NPOI.OpenXml4Net.dll;
NPOI.OpenXmlFormats.dll;
ICSharpCode.SharpZipLib.dll;
程式碼如下:
/// <summary> /// /// </summary> /// <param name="dtSource">資料來源</param> /// <param name="strFileName">儲存路徑</param> /// <param name="dvXH">序號</param> public void Export(DataTable dtSource,string strFileName,DataView dvXH=null) { //建立工作簿 office2007以上 XSSFWorkbook workbook = new XSSFWorkbook(); //為工作簿建立工作表並命名 ISheet sheet = workbook.CreateSheet("商品表"); ICellStyle dateStyle = workbook.CreateCellStyle(); IDataFormat format = workbook.CreateDataFormat(); dateStyle.DataFormat = format.GetFormat("yyyy-mm-dd"); #region 表頭及樣式 int cellIndex = 0; IRow headerRow = sheet.CreateRow(0); for (int i = 0; i < dtSource.Columns.Count; i++) { #region MyRegion string ColumnsName = dtSource.Columns[i].ToString(); if (dtSource.Columns[i].ColumnName.EndsWith("XH")) { ColumnsName = "序號"; sheet.SetColumnWidth(cellIndex, 3000); //sheet.SetColumnHidden(cellIndex, true);隱藏指定列 } else if (dtSource.Columns[i].ColumnName.EndsWith("GoogName")) { ColumnsName = "商品名稱"; sheet.SetColumnWidth(cellIndex,10000);//設定列寬 } else if (dtSource.Columns[i].ColumnName.EndsWith("Num")) { ColumnsName = "數量"; sheet.SetColumnWidth(cellIndex, 5000); } else if (dtSource.Columns[i].ColumnName.EndsWith("Summation")) { ColumnsName = "合計(元)"; sheet.SetColumnWidth(cellIndex, 5000); } #endregion //設定行高 headerRow.HeightInPoints = 35; headerRow.CreateCell(cellIndex).SetCellValue(ColumnsName); ICellStyle headStyle = workbook.CreateCellStyle(); headStyle.WrapText = true; IFont font = workbook.CreateFont(); //字型大小 font.FontHeightInPoints = 12; font.Boldweight = 360; headStyle.SetFont(font); headerRow.GetCell(cellIndex).CellStyle = headStyle; cellIndex++; } #endregion int rowIndex = 1;//行數一定要從1行開始 int count = 1; int startRow = 1; DataView dvSource = dtSource.DefaultView; if (dvXH!=null) { foreach (DataRowView drv in dvXH) {//1-10.11-12,13-14,15-16 int rowcout = 0; dvSource.RowFilter = "XH='" + drv["XH"] + "'"; foreach (DataRowView row in dvSource) { #region 填充內容 IRow dataRow = sheet.CreateRow(rowIndex); //序號 ICell newCel0 = dataRow.CreateCell(0); ICellStyle style0 = workbook.CreateCellStyle(); style0.DataFormat = format.GetFormat("text"); newCel0.SetCellValue(row["XH"].ToString()); //標的名稱 ICell newCel2 = dataRow.CreateCell(1); ICellStyle style2 = workbook.CreateCellStyle(); style2.DataFormat = format.GetFormat("text"); newCel2.SetCellValue(row["GoogName"].ToString()); //標的數量 ICell newCel4 = dataRow.CreateCell(2); ICellStyle style4 = workbook.CreateCellStyle(); style4.DataFormat = format.GetFormat("text"); newCel4.SetCellValue(row["Num"].ToString()); //合計(元) ICell newCel8 = dataRow.CreateCell(3); ICellStyle style8 = workbook.CreateCellStyle(); style8.DataFormat = format.GetFormat("text"); newCel8.SetCellValue(row["Summation"].ToString()); #endregion rowIndex++; rowcout++; } if (count == 1) { //合併行數 sheet.AddMergedRegion(new CellRangeAddress(startRow, rowcout, 3, 3)); startRow = startRow + rowcout; } else { sheet.AddMergedRegion(new CellRangeAddress(startRow, startRow + rowcout - 1, 3, 3)); startRow = startRow + rowcout; } count++; } } else { #region MyRegion foreach (DataRowView row in dvSource) { #region 填充內容 IRow dataRow = sheet.CreateRow(rowIndex); //序號 ICell newCel0 = dataRow.CreateCell(0); ICellStyle style0 = workbook.CreateCellStyle(); style0.DataFormat = format.GetFormat("text"); newCel0.SetCellValue(row["XH"].ToString()); //商品名稱 ICell newCel1 = dataRow.CreateCell(1); ICellStyle style1 = workbook.CreateCellStyle(); style1.DataFormat = format.GetFormat("text"); newCel1.SetCellValue(row["GoogName"].ToString()); //數量 ICell newCel2 = dataRow.CreateCell(2); ICellStyle style2 = workbook.CreateCellStyle(); style2.DataFormat = format.GetFormat("text"); newCel2.SetCellValue(row["Num"].ToString()); //合計(元) ICell newCel3 = dataRow.CreateCell(3); ICellStyle style3 = workbook.CreateCellStyle(); style3.DataFormat = format.GetFormat("text"); newCel3.SetCellValue(row["Summation"].ToString()); #endregion rowIndex++; } #endregion } #region 拼接最後一行 IFont fontLast = workbook.CreateFont(); fontLast.FontHeightInPoints = 30; fontLast.Boldweight = 480; IRow dataRowLast = sheet.CreateRow(rowIndex); dataRowLast.HeightInPoints = 40; ICell newCelLast = dataRowLast.CreateCell(0); ICellStyle styleLast = workbook.CreateCellStyle(); styleLast.DataFormat = format.GetFormat("text"); styleLast.SetFont(fontLast); newCelLast.SetCellValue("製作人:張三"); sheet.AddMergedRegion(new CellRangeAddress(rowIndex, rowIndex, 0, 3)); #endregion MemoryStream stream = new MemoryStream(); workbook.Write(stream); var buf = stream.ToArray(); using (FileStream fs = new FileStream(strFileName, FileMode.Create, FileAccess.Write)) { fs.Write(buf, 0, buf.Length); fs.Flush(); } }
實際運用中,涉及到資料,方法中有很多校驗等操作,方法直觀可讀性不是太好,下面附上簡單匯出的方法:
實際上匯出Excel,總結有幾點:
1、參照相關元件
2、建立一個工作簿,建立工作表並命名;
3、設定表頭及樣式;
4、填充資料;
5、儲存資料到指定位置;
/// <summary> /// 簡單匯出資料 /// </summary> /// <param name="dtSource">資料來源</param> /// <param name="strFileName">儲存路徑</param> /// <param name="dvXH">序號</param> public void Export1(DataTable dtSource, string strFileName) { //建立工作簿 XSSFWorkbook workbook = new XSSFWorkbook(); //為工作簿建立工作表並命名 ISheet sheet = workbook.CreateSheet("商品表"); IDataFormat format = workbook.CreateDataFormat(); #region 表頭及樣式 int cellIndex = 0; IRow headerRow = sheet.CreateRow(0); for (int i = 0; i < dtSource.Columns.Count; i++) { //設定行高 headerRow.HeightInPoints = 35; headerRow.CreateCell(cellIndex).SetCellValue(dtSource.Columns[i].ToString()); ICellStyle headStyle = workbook.CreateCellStyle(); headStyle.WrapText = true; IFont font = workbook.CreateFont(); //字型大小 font.FontHeightInPoints = 12; font.Boldweight = 360; headStyle.SetFont(font); headerRow.GetCell(cellIndex).CellStyle = headStyle; cellIndex++; } #endregion #region 資料填充 int rowIndex = 1;//行數一定要從1行開始,因為上面已經建立了表頭為0行; DataView dvSource = dtSource.DefaultView; foreach (DataRow row in dtSource.Rows) { int ColumnIndex = 0; IRow dataRow = sheet.CreateRow(rowIndex); foreach (DataColumn column in dtSource.Columns) { //序號 ICell newCel0 = dataRow.CreateCell(ColumnIndex); ICellStyle style0 = workbook.CreateCellStyle(); style0.DataFormat = format.GetFormat("text");//資料型別 newCel0.SetCellValue(row[column.ColumnName].ToString()); ColumnIndex++; } rowIndex++; } #endregion #region 儲存到指定位置 MemoryStream stream = new MemoryStream(); workbook.Write(stream); var buf = stream.ToArray(); using (FileStream fs = new FileStream(strFileName, FileMode.Create, FileAccess.Write)) { fs.Write(buf, 0, buf.Length); fs.Flush(); } #endregion }
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45