狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發文檔 其他文檔  
 
網站管理員

[點晴永久免費OA]【C#】NPOI導出Excel,包含一個或者多個sheet表

admin
2022年11月25日 15:21 本文熱度 1615
文章簡介:NPOI是指構建在POI 3.x版本之上的一個程序,NPOI可以在沒有安裝Office的情況下對Word或Excel文檔進行讀寫操作。NPOI是一個開源的C#讀寫Excel、WORD等微軟OLE2組件文檔的項目。他導出的文件和你電腦右鍵創建的office文件一樣原生,不會提示格式不符,重要的是不依賴office組件。

1、先在項目中引入NPOI包。

2、建一個execlHelper.cs類。

using NPOI.XSSF.UserModel;
using System;
using System.Data;
using System.IO;
using System.Web;
using NPOI.SS.UserModel;
namespace C.Customization.Helper
{
    /// <summary>
    /// Class execlHelper.
    /// </summary>
    public class execlHelper
    {
        /// <summary>
        /// Datas the set to excel.
        /// </summary>
        /// <param name="ds">The ds.</param>
        /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
        public static string DataSetToExcel(DataSet ds)
        {
            try
            {
                string fileName = DateTime.Now.ToString("yyyyMMddHHmmssfff") + ".xlsx";
                string urlPath = "Upload/ExcelFiles/";
                string filePath = HttpContext.Current.Server.MapPath("\\" + urlPath);
                Directory.createDirectory(filePath);
                string Path = filePath + fileName;
                FileStream fs = null;
                XSSFWorkbook workbook = new XSSFWorkbook();
                for (int i = 0; i < ds.Tables.Count; i++)
                {
                    XSSFSheet sheet = (XSSFSheet)workbook.createSheet(ds.Tables[i].TableName);
                    XSSFCellStyle dateStyle = (XSSFCellStyle)workbook.createCellStyle();
                    XSSFDataFormat format = (XSSFDataFormat)workbook.createDataFormat();
                    dateStyle.DataFormat = format.GetFormat("yyyy-mm-dd");
                    int rowIndex = 0;
                    #region 新建表,填充表頭,填充列頭,樣式
                    if (rowIndex == 0)
                    {
                        #region 列頭及樣式
                        XSSFRow headerRow = (XSSFRow)sheet.createRow(0);
                        XSSFCellStyle headStyle = (XSSFCellStyle)workbook.createCellStyle();
                        headStyle.Alignment = HorizontalAlignment.Center;
                        XSSFFont font = (XSSFFont)workbook.createFont();
                        font.FontHeightInPoints = 12;
                        font.Boldweight = 700;
                        headStyle.SetFont(font);
                        //自定義表頭
                        for (var j = 0; j < ds.Tables[i].Columns.Count; j++)
                        {
                            sheet.SetColumnWidth(j, 30 * 256);
                            headerRow.createCell(j).SetCellValue(ds.Tables[i].Columns[j].ColumnName);
                            headerRow.GetCell(j).CellStyle = headStyle;
                        }
                        #endregion
                        rowIndex = 1;
                    }
                    #endregion
                    ICellStyle cellstyle = workbook.createCellStyle();
                    cellstyle.VerticalAlignment = VerticalAlignment.Center;
                    cellstyle.Alignment = HorizontalAlignment.Center;
                    foreach (DataRow row in ds.Tables[i].Rows)
                    {
                        XSSFRow dataRow = (XSSFRow)sheet.createRow(rowIndex);
                        #region 填充內容
                        foreach (DataColumn column in ds.Tables[i].Columns)
                        {
                            XSSFCell newCell = (XSSFCell)dataRow.createCell(column.Ordinal);
                            string type = row[column].GetType()?.FullName;
                            newCell.SetCellValue(GetValue(row[column].ToString(), type));
                            newCell.CellStyle = cellstyle;
                        }
                        #endregion
                        rowIndex++;
                    }
                }
                using (fs = File.OpenWrite(Path))
                {
                    workbook.Write(fs);
                    return Path;
                }
            }
            catch
            {
                return "";
            }
        }
        /// <summary>
        /// Gets the value.
        /// </summary>
        /// <param name="cellValue">The cell value.</param>
        /// <param name="type">The type.</param>
        /// <returns>System.String.</returns>
        private static string GetValue(string cellValue, string type)
        {
            object value = string.Empty;
            switch (type)
            {
                case "System.String"://字符串類型
                    value = cellValue;
                    break;
                case "System.DateTime"://日期類型
                    System.DateTime dateV;
                    System.DateTime.TryParse(cellValue, out dateV);
                    value = dateV;
                    break;
                case "System.Boolean"://布爾型
                    bool boolV = false;
                    bool.TryParse(cellValue, out boolV);
                    value = boolV;
                    break;
                case "System.Int16"://整型
                case "System.Int32":
                case "System.Int64":
                case "System.Byte":
                    int intV = 0;
                    int.TryParse(cellValue, out intV);
                    value = intV;
                    break;
                case "System.Decimal"://浮點型
                case "System.Double":
                    double doubV = 0;
                    double.TryParse(cellValue, out doubV);
                    value = doubV;
                    break;
                case "System.DBNull"://空值處理
                    value = string.Empty;
                    break;
                default:
                    value = string.Empty;
                    break;
            }
            return value.ToString();
        }
    }
}

該文章在 2022/11/25 15:21:04 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業的專業生產管理軟件系統,系統成熟度和易用性得到了國內大量中小企業的青睞。
點晴PMS碼頭管理系統主要針對港口碼頭集裝箱與散貨日常運作、調度、堆場、車隊、財務費用、相關報表等業務管理,結合碼頭的業務特點,圍繞調度、堆場作業而開發的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業的高效ERP管理信息系統。
點晴WMS倉儲管理系統提供了貨物產品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產管理,WMS管理系統,標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協同辦公管理系統。
Copyright 2010-2025 ClickSun All Rights Reserved