NET Excel轉換為集合對象

来源:https://www.cnblogs.com/Cailf/archive/2019/08/20/11383239.html
-Advertisement-
Play Games

1.僅適用於規則Excel:表頭和數據一一對應 2.涉及到Excel轉換為集合對象的部分代碼,完整npoi幫助類點擊查看 /// <summary> /// 預設把excel第一個sheet中的數據轉換為對象集合 /// </summary> /// <typeparam name="T"></ty ...


1.僅適用於規則Excel:表頭和數據一一對應

2.涉及到Excel轉換為集合對象的部分代碼,完整npoi幫助類點擊查看

        /// <summary>
        /// 預設把excel第一個sheet中的數據轉換為對象集合
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="entity"></param>
        /// <param name="filePath">文件路徑</param>
        /// <param name="sheetIndex">數據所在sheet索引:預設第一個sheet</param>
        /// <param name="originIndex">數據開始行:表頭行索引</param>
        /// <returns></returns>
        public static List<T> ConvertExcelToList<T>(T entity, string filePath, int sheetIndex = 0, int originIndex = 0)
            where T : class, new()
        {
            var stream = new FileStream(filePath, FileMode.Open, FileAccess.Read);
            using (stream)
            {
                return ConvertExcelToList(entity, filePath, stream, sheetIndex, originIndex);
            }

        }

        /// <summary>
        /// 把excel轉換為對象集合
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="entity"></param>
        /// <param name="filePath">文件路徑</param>
        /// <param name="stream">文件流</param>
        /// <param name="sheetIndex">數據所在sheet索引:預設第一個sheet</param>
        /// <param name="originIndex">數據開始行:表頭行索引</param>
        /// <returns></returns>
        public static List<T> ConvertExcelToList<T>(T entity, string filePath, Stream stream, int sheetIndex = 0, int originIndex = 0)
            where T : class, new()
        {
            //  結果集合
            var list = new List<T>();

            //  獲取特性和屬性的關係字典
            Dictionary<string, string> propertyDictionary = GetPropertyDictionary(entity);

            var isExcel2007 = filePath.IsExcel2007();
            var workBook = stream.GetWorkbook(isExcel2007);
            //  獲得數據所在sheet對象
            var sheet = workBook.GetSheetAt(sheetIndex);
            //  獲取表頭和所在索引的關係字典
            Dictionary<string, int> headerDictionary = GetHeaderDictionary(originIndex, propertyDictionary, sheet);

            //  兩個字典對象,只有一個為空,則return
            if (!propertyDictionary.Any() || !headerDictionary.Any())
            {
                return list;
            }

            //  生成結果集合
            BuilderResultList(originIndex, list, propertyDictionary, sheet, headerDictionary);
            return list;
        }

        /// <summary>
        /// 生成結果集合
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="originIndex">數據開始行:表頭行索引</param>
        /// <param name="list">結果集合</param>
        /// <param name="propertyDictionary">特性和屬性的關係字典:屬性字典</param>
        /// <param name="sheet">數據所在sheet對象</param>
        /// <param name="headerDictionary">表頭和所在索引的關係字典:表頭字典</param>
        private static void BuilderResultList<T>(int originIndex, List<T> list, Dictionary<string, string> propertyDictionary, ISheet sheet, Dictionary<string, int> headerDictionary) where T : class, new()
        {
            #region 通過反射,綁定參數

            //  從表頭行下一行開始迴圈,直到最後一行
            for (int rowIndex = originIndex + 1; rowIndex <= sheet.LastRowNum; rowIndex++)
            {
                T newEntity = new T();
                var newEntityType = newEntity.GetType();
                var itemRow = sheet.GetRow(rowIndex);

                //  迴圈表頭字典
                foreach (var itemKey in headerDictionary.Keys)
                {
                    //  得到先對應的表頭列所在列索引
                    var columnIndex = headerDictionary[itemKey];
                    //  把格式轉換為utf-8
                    var itemCellValue = itemRow.GetValue(columnIndex).FormatUtf8String();

                    //  根據表頭值,從 屬性字典 中獲得 屬性值 名
                    var propertyName = propertyDictionary[itemKey];
                    newEntityType.GetProperty(propertyName).SetValue(newEntity, itemCellValue);
                }
                list.Add(newEntity);
            }

            #endregion
        }

        /// <summary>
        /// 獲取表頭和所在索引的關係字典
        /// </summary>
        /// <param name="originIndex">數據開始行:表頭行索引</param>
        /// <param name="propertyDictionary">特性和屬性的關係字典:屬性字典</param>
        /// <param name="sheet">數據所在sheet對象</param>
        /// <returns></returns>
        private static Dictionary<string, int> GetHeaderDictionary(int originIndex, Dictionary<string, string> propertyDictionary, ISheet sheet)
        {
            var headerDictionary = new Dictionary<string, int>();

            #region 獲取表頭和所在索引的關係字典

            //  獲得表頭所在row對象
           var itemRow = sheet.GetRow(originIndex);
            //  記錄表頭行,表頭和所在索引的關係,存入字典,暫不考慮表頭相同情況
            headerDictionary = new Dictionary<string, int>();
            //  可能會存在無限列情況,設置最大列為200
            var cellTotal = itemRow.Cells.Count() > 200 ? 200 : itemRow.Cells.Count();
            for (int columnIndex = 0; columnIndex < cellTotal; columnIndex++)
            {
                //  把格式轉換為utf-8
                var itemCellValue = itemRow.GetValue(columnIndex).FormatUtf8String();
                //  itemCellValue補等於空 且 不在headerDictionary中 且 在propertyDictionary中
                if (!itemCellValue.IsNullOrWhiteSpace() && !headerDictionary.ContainsKey(itemCellValue) && propertyDictionary.ContainsKey(itemCellValue))
                {
                    headerDictionary.Add(itemCellValue, columnIndex);
                }
            }

            #endregion

            return headerDictionary;
        }

        /// <summary>
        /// 獲取特性和屬性的關係字典
        /// </summary>
        /// <param name="PropertyArr"></param>
        /// <returns></returns>
        private static Dictionary<string, string> GetPropertyDictionary<T>(T entity)
        {
            //  獲取type
            var userType = typeof(T);
            //  獲取類中所有公共屬性集合
            var propertyArr = userType.GetProperties();

            #region 獲取特性和屬性的關係字典

            //  屬性字典,保存別名和屬性的對應關係
            //  key:別名,特性中的值
            //  value:屬性名,類中的屬性
            var propertyDictionary = new Dictionary<string, string>();
            foreach (var itemProperty in propertyArr)
            {
                //  獲取屬性上存在AliasAttribute的數組
                var customAttributesArr = itemProperty.GetCustomAttributes(typeof(AliasAttribute), true);
                //  存在該特性
                if (customAttributesArr.Any())
                {
                    var first = (AliasAttribute)customAttributesArr.FirstOrDefault();
                    if (!propertyDictionary.ContainsKey(first.Name))
                    {
                        propertyDictionary.Add(first.Name, itemProperty.Name);
                    }
                }
            }

            #endregion
            return propertyDictionary;
        }
View Code

3.調用測試

            var path = @"C:\導入文件.xlsx";
            var result = NpoiHelper.ConvertExcelToList(new UserDto(), path);

            Assert.IsTrue(result.Any());

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 一、方法 方法的基本結構:返回值 方法名(參數){ 內容 },其中無返回值時用void,有返回值時用返回值類型,參數可以是零到無限個,參數由參數類型和參數名組成。 方法又稱為函數,它既可以作為一個獨立的功能,又可以作為類的行為。 作為獨立功能:洗衣機 作為類的行為:洗衣機 方法作為獨立功能對比作為類 ...
  • 子類重新定義父類的某一個方法時,必須把父類的方法定義為virtual。 在定義介面中不能有方法體,虛方法可以。 實現時,子類可以不重新定義虛方法,但如果一個類繼承介面,那必須實現這個介面。 ...
  • 使用顏色標記的方式來控制Console的顏色輸出,讓Console顏色輸出不再繁瑣。 ...
  • 一 目標 推薦一款線上將Json對象轉換為Ts類的工具:https://apihelper.jccore.cn/jsontool 可以幫助前端開發人員提高開發效率。 二 背景 Json是一種輕量級的數據交換格式。易於人閱讀和編寫。同時也易於機器解析和生成。所以Json成為了前後端交互使用的主要格式。 ...
  • NET 特性(Attribute) 轉自 "博客園(Fish)" "特性(Attribute)" :是用於在運行時傳遞程式中各種元素(比如類、方法、結構、枚舉、組件等)的行為信息的聲明性標簽。 您可以通過使用特性向程式添加聲明性信息。一個聲明性標簽是通過放置在它所應用的元素前面的方括弧(\[ \]) ...
  • 1.多線程執行方法 2.線程調用 ...
  • 1.首先新建一個空的Asp.net core項目 2.新建一個類 gj.cs 3.添加資料庫上下文類。 4.添加控制器 5.視圖 F5運行程式 (如圖) ...
  • 1.泛形方法:具體實例點擊查看BuilderResultList 2.調用 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...