使用WeihanLi.Npoi操作Excel

来源:https://www.cnblogs.com/weihanli/archive/2018/04/28/Use-WeihanLi-Npoi.html
-Advertisement-
Play Games

WeihanLi.Npoi Intro Npoi 擴展,適用於.netframework4.5及以上和netstandard2.0, .netframework基於 "NPOI" , .netstandard基於 "DotNetCore.NPOI" NpoiExtensions for target ...


WeihanLi.Npoi

Intro

Npoi 擴展,適用於.netframework4.5及以上和netstandard2.0, .netframework基於NPOI, .netstandard基於 DotNetCore.NPOI

NpoiExtensions for target framework net4.5 or netstandard2.0,for net45 basedon NPOI,for .netstandard basedon DotNetCore.NPOI

Use

Install

.NetFramework

Install-Package WeihanLi.Npoi

.NetCore

dotnet add package WeihanLi.Npoi

GetStarted

  1. LoadFromExcelFile

    it consider the first row of the sheet as the header not for read,it will read data from next row.You can point out your header row through the exposed api if needed.

    • Read Excel to DataSet

      // read excel to dataSet, read all sheets data to dataSet,by default it will read from the headerRowIndex(0) + 1
      var dataSet = ExcelHelper.ToDataSet(string excelPath);
      
      // read excel to dataSet, read all sheets data to dataSet,headerRowIndex is not for read,read from headerRowIndex+1
      var dataSet = ExcelHelper.ToDataSet(string excelPath, int headerRowIndex);
    • Read Excel to DataTable

      // read excel to dataTable directly,by default read the first sheet content
      var dataTable = ExcelHelper.ToDataTable(string excelPath);
      
      // read excel workbook's sheetIndex sheet to dataTable directly
      var dataTableOfSheetIndex = ExcelHelper.ToDataTable(string excelPath, int sheetIndex);
      
      // read excel workbook's sheetIndex sheet to dataTable,custom headerRowIndex
      var dataTableOfSheetIndex = ExcelHelper.ToDataTable(string excelPath, int sheetIndex, int headerRowIndex);
      
      // read excel to dataTable use mapping relations and settings from typeof(T),by default read the first sheet content
      var dataTableT = ExcelHelper.ToDataTable<T>(string excelPath);
      
      // ... sheetIndex and headerRowIndex is also supported like above
    • Read Excel to List

      // read excel first sheet content to a List<T>
      var entityList = ExcelHelper.ToEntityList<T>(string excelPath);
      
      // read excel sheetIndex sheet content to a List<T>
      // you can custom header row index via sheet attribute or fluent api HasSheet
      var entityList1 = ExcelHelper.ToEntityList<T>(string excelPath, int sheetIndex);
  2. Get a workbook

    // load excel workbook from file
    var workbook = LoadExcel(string excelPath);
    
    // prepare a workbook accounting to excelPath
    var workbook = PrepareWorkbook(string excelPath);
    
    // prepare a workbook accounting to excelPath and custom excel settings
    var workbook = PrepareWorkbook(string excelPath, ExcelSetting excelSetting);
    
    // prepare a workbook whether *.xlsx file
    var workbook = PrepareWorkbook(bool isXlsx);
    
    // prepare a workbook whether *.xlsx file and custom excel setting
    var workbook = PrepareWorkbook(bool isXlsx, ExcelSetting excelSetting);
  3. Rich extensions

    
    List<TEntity> ToEntityList<TEntity>([NotNull]this IWorkbook workbook)
    
    DataTable ToDataTable([NotNull]this IWorkbook workbook)
    
    ISheet ImportData<TEntity>([NotNull] this ISheet sheet, DataTable dataTable)
    
    int ImportData<TEntity>([NotNull] this IWorkbook workbook, IEnumerable<TEntity> list,
                int sheetIndex)
    
    int ImportData<TEntity>([NotNull] this ISheet sheet, IEnumerable<TEntity> list)
    
    int ImportData<TEntity>([NotNull] this IWorkbook workbook, [NotNull] DataTable dataTable,
                int sheetIndex)
    
    ToExcelFile<TEntity>([NotNull] this IEnumerable<TEntity> entityList,
                [NotNull] string excelPath)
    
    int ToExcelStream<TEntity>([NotNull] this IEnumerable<TEntity> entityList,
                [NotNull] Stream stream)
    
    byte[] ToExcelBytes<TEntity>([NotNull] this IEnumerable<TEntity> entityList)
    
    int ToExcelFile([NotNull] this DataTable dataTable, [NotNull] string excelPath)
    
    int ToExcelStream([NotNull] this DataTable dataTable, [NotNull] Stream stream)
    
    byte[] ToExcelBytes([NotNull] this DataTable dataTable)
    
    byte[] ToExcelBytes([NotNull] this IWorkbook workbook)
    
    int WriteToFile([NotNull] this IWorkbook workbook, string filePath)
    
    object GetCellValue([NotNull] this ICell cell, Type propertyType)
    
    T GetCellValue<T>([NotNull] this ICell cell)
    
    SetCellValue([NotNull] this ICell cell, object value)
    

Define Custom Mapping and settings

  1. Attributes

    Add ColumnAttribute on the property of the entity which you used for export or import

    Add SheetAttribute on the entity which you used for export or import,you can set the StartRowIndex on your need(by default it is 1)

    for example:

    public class TestEntity
    {
        [Column("PKID")]
        public int PKID { get; set; }
    
        [Column("賬單標題")]
        public string BillTitle { get; set; }
    
        [Column("賬單詳情")]
        public string BillDetails { get; set; }
    
        [Column("創建人")]
        public string CreatedBy { get; set; }
    
        [Column("創建時間")]
        public DateTime CreatedTime { get; set; }
    }
    
    internal class TestEntity1
    {
        /// <summary>
        /// 用戶名
        /// </summary>
        [Column("用戶名")]
        public string Username { get; set; }
    
        [Column(IsIgnored = true)]
        public string PasswordHash { get; set; }
    
        [Column("可用餘額")]
        public decimal Amount { get; set; } = 1000M;
    
        [Column("微信id")]
        public string WechatOpenId { get; set; }
    
        [Column("是否啟用")]
        public bool IsActive { get; set; }
    }
  2. FluentApi

    You can also use FluentApi above version 1.0.3

    for example:

    var setting = ExcelHelper.SettingFor<TestEntity>();
    // ExcelSetting
    setting.HasAuthor("WeihanLi")
        .HasTitle("WeihanLi.Npoi test")
        .HasDescription("")
        .HasSubject("");
    
    setting.HasSheetConfiguration(0, "系統設置列表");
    
    setting.HasFilter(0, 1)
        .HasFreezePane(0, 1, 2, 1);
    setting.Property(_ => _.SettingId)
        .HasColumnIndex(0);
    
    setting.Property(_ => _.SettingName)
        .HasColumnTitle("設置名稱")
        .HasColumnIndex(1);
    
    setting.Property(_ => _.DisplayName)
        .HasColumnTitle("設置顯示名稱")
        .HasColumnIndex(2);
    
    setting.Property(_ => _.SettingValue)
        .HasColumnTitle("設置值")
        .HasColumnIndex(3);
    
    setting.Property(_ => _.CreatedTime)
        .HasColumnTitle("創建時間")
        .HasColumnIndex(5)
        .HasColumnFormatter("yyyy-MM-dd HH:mm:ss");
    
    setting.Property(_ => _.CreatedBy)
        .HasColumnIndex(4)
        .HasColumnTitle("創建人");
    
    setting.Property(_ => _.UpdatedBy).Ignored();
    setting.Property(_ => _.UpdatedTime).Ignored();
    setting.Property(_ => _.PKID).Ignored();

Samples

Contact

Contact me: [email protected]


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

-Advertisement-
Play Games
更多相關文章
  • 一、AMQP 概述 AMQP(Advanced Message Queuing Protocol),高級消息隊列協議。 簡單回憶一下JMS的消息模型,可能會有助於理解AMQP的消息模型。在JMS中,有三個主要的參與者:消息的生產者、消息的消費者以及在生產者和消費者之間傳遞消息的通道(隊列或主題)。在 ...
  • 程式:購物車程式 需求: 程式如下: 註:程式參照老男孩Alex,附博客地址:http://www.cnblogs.com/alex3714/articles/5717620.html ...
  • 一、異常概述 異常是程式中的一些錯誤,但並不是所有的錯誤都是異常,並且錯誤有時候是可以避免的。比如說,你的代碼少了一個分號,那麼運行出來結果是提示是錯誤 java.lang.Error;如果你用System.out.println(11/0),那麼你是因為你用0做了除數,會拋出 java.lang. ...
  • asp.net-core選項模塊是全新,可拓展的框架,其作用在整個.net-core框架中,就像依賴註入一樣無處不在,是一個很重要的組件。 其實配置模塊與選項模塊是緊密相連的,我們可以使用ConfigureBuilder類來使用配置,但是在Startup類中,我們使用了依賴註入來實現IConfigu ...
  • 怎麼用NuGet和怎麼配置log4net就不介紹了,直接上代碼(Visual Studio 2015 下的項目,用的.NET Framework 4.5.2)。 其中QRDecodeConsoleApp.exe.config文件里配置圖片路勁(預設為D:\我的文檔\Pictures\二維碼)、圖片類 ...
  • 通過前面的學習,我們的書籍應用程式已經能正常運行了,但現在的呈現效果不是很理想,主要標題顯示的是英文。我們不想看到的時間(如下圖所示0:00:00),並且希望把“ReleaseDate”修改成“出版日期”。現在的程式運行效果如下圖。 ...
  • 在 Android 系統下, 一些公司會將自己做的APK進行管控,授權簽名後方可使用。 APK所屬的軟體公司會提供簽名包,例如: 第一步:是要檢查所操作的 PC 機是否安裝 JDK,如果沒有安裝,請安裝 JDK併進行環境變數的配置。 第二步:保證安裝 JDK 安裝成功並保證環境變數配置成功, 然後把 ...
  • 效果圖: 要獲取到字體庫首先要在 NuGet 添加 SharpDx.Direct2D1 api: 因為 設置FontFamily 屬性需要的時一個字元串類型,我們只要獲取到字體的名字添加到一個字元串集合上就可以了。 原文地址:http://edi.wang/post/2017/1/22/window ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...