All Projects → WeihanLi → Weihanli.npoi

WeihanLi / Weihanli.npoi

Licence: apache-2.0
NPOI Extensions, excel/csv importer/exporter for IEnumerable<T>/DataTable, fluentapi(great flexibility)/attribute configuration

Programming Languages

csharp
926 projects

Projects that are alternatives of or similar to Weihanli.npoi

eec
A fast and lower memory excel write/read tool.一个非POI底层,支持流式处理的高效且超低内存的Excel读写工具
Stars: ✭ 93 (-40.76%)
Mutual labels:  csv, excel, office
Dbwebapi
(Migrated from CodePlex) DbWebApi is a .Net library that implement an entirely generic Web API (RESTful) for HTTP clients to call database (Oracle & SQL Server) stored procedures or functions in a managed way out-of-the-box without any configuration or coding.
Stars: ✭ 84 (-46.5%)
Mutual labels:  excel, csv
Magicodes.ie
Import and export general library, support Dto import and export, template export, fancy export and dynamic export, support Excel, Csv, Word, Pdf and Html.
Stars: ✭ 1,198 (+663.06%)
Mutual labels:  excel, csv
Combine Csv Files In The Folder
Tiny script to automate everyday task
Stars: ✭ 91 (-42.04%)
Mutual labels:  excel, csv
Csvpack
csvpack library / gem - tools 'n' scripts for working with tabular data packages using comma-separated values (CSV) datafiles in text with meta info (that is, schema, datatypes, ..) in datapackage.json; download, read into and query CSV datafiles with your SQL database (e.g. SQLite, PostgreSQL, ...) of choice and much more
Stars: ✭ 71 (-54.78%)
Mutual labels:  csv, dataset
Fast Excel
🦉 Fast Excel import/export for Laravel
Stars: ✭ 1,183 (+653.5%)
Mutual labels:  excel, csv
Filecontextcore
FileContextCore is a "Database"-Provider for Entity Framework Core and adds the ability to store information in files instead of being limited to databases.
Stars: ✭ 91 (-42.04%)
Mutual labels:  excel, csv
Tablereport
A python library for making table report.
Stars: ✭ 51 (-67.52%)
Mutual labels:  excel, office
Iso 3166 Countries With Regional Codes
ISO 3166-1 country lists merged with their UN Geoscheme regional codes in ready-to-use JSON, XML, CSV data sets
Stars: ✭ 1,372 (+773.89%)
Mutual labels:  csv, dataset
Phpspreadsheet
A pure PHP library for reading and writing spreadsheet files
Stars: ✭ 10,627 (+6668.79%)
Mutual labels:  excel, office
Pylightxl
A light weight, zero dependency, minimal functionality excel read/writer python library
Stars: ✭ 134 (-14.65%)
Mutual labels:  excel, office
Magento2 Import Export Sample Files
Default Magento 2 CE import / export CSV files & sample files for Firebear Improved Import / Export extension
Stars: ✭ 68 (-56.69%)
Mutual labels:  excel, csv
Excelize
Golang library for reading and writing Microsoft Excel™ (XLSX) files.
Stars: ✭ 10,286 (+6451.59%)
Mutual labels:  excel, office
Myexcel
MyExcel, a new way to operate excel!
Stars: ✭ 1,198 (+663.06%)
Mutual labels:  excel, csv
Fifa Fut Data
Web-scraping script that writes the data of all players from FutHead and FutBin to a CSV file or a DB
Stars: ✭ 55 (-64.97%)
Mutual labels:  csv, dataset
Tabtoy
高性能表格数据导出器
Stars: ✭ 1,302 (+729.3%)
Mutual labels:  excel, csv
Elasticsearch Dataformat
Excel/CSV/BulkJSON downloads on Elasticsearch.
Stars: ✭ 135 (-14.01%)
Mutual labels:  excel, csv
Excellentexport
Javascript export to Excel
Stars: ✭ 1,018 (+548.41%)
Mutual labels:  excel, csv
Django Rest Pandas
📊📈 Serves up Pandas dataframes via the Django REST Framework for use in client-side (i.e. d3.js) visualizations and offline analysis (e.g. Excel)
Stars: ✭ 1,030 (+556.05%)
Mutual labels:  excel, csv
Universal Data Tool
Collaborate & label any type of data, images, text, or documents, in an easy web interface or desktop app.
Stars: ✭ 1,356 (+763.69%)
Mutual labels:  csv, dataset

WeihanLi.Npoi

WeihanLi.Npoi

WeihanLi.Npoi Latest

Build Status

Azure Pipeline Build Status

Github Build Status

Travis Build Status

Intro

NPOI extensions for target framework net45 and netstandard2.0.

There' a lot of userful extensions for you, core fetures are as follows:

  • mapping a excel file data to a DataTable or List<TEntity>
  • export IEnumerable<TEntity> or DataTable data to Excel file or Excel file bytes or even write excel file stream to your stream
  • export IEnumerable<TEntity> or DataTable data to csv file or bytes.
  • custom configuration/mappings by Attribute or FluentAPI(inspired by FluentExcel)
  • great flexibility by fluent InputFormatter/OutputFormatter/ColumnInputFormatter/ColumnOutputFormatter

GetStarted

  1. Export list/dataTable to Excel/csv

    var entities = new List<Entity>();
    entities.ToExcelFile(string excelPath);
    entities.ToExcelBytes(ExcelFormat excelFormat);
    entities.ToCsvFile(string csvPath);
    entities.ToCsvBytes();
    
  2. Read Excel/csv 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);
    
    var entityList2 = CsvHelper.ToEntityList<T>(string csvPath);
    var entityList3 = CsvHelper.ToEntityList<T>(byte[] csvBytes);
    
  3. Read Excel/csv 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);
    
    // read csv file data to dataTable
    var dataTable1 = CsvHelper.ToDataTable(string csvFilePath);
    

More Api here: https://weihanli.github.io/WeihanLi.Npoi/docs/api/WeihanLi.Npoi.html

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("Id")]
        public int PKID { get; set; }
    
        [Column("Bill Title")]
        public string BillTitle { get; set; }
    
        [Column("Bill Details")]
        public string BillDetails { get; set; }
    
        [Column("CreatedBy")]
        public string CreatedBy { get; set; }
    
        [Column("CreatedTime")]
        public DateTime CreatedTime { get; set; }
    }
    
    public class TestEntity1
    {
        [Column("Username")]
        public string Username { get; set; }
    
        [Column(IsIgnored = true)]
        public string PasswordHash { get; set; }
    
        [Column("Amount")]
        public decimal Amount { get; set; } = 1000M;
    
        [Column("WechatOpenId")]
        public string WechatOpenId { get; set; }
    
        [Column("IsActive")]
        public bool IsActive { get; set; }
    }
    
  2. FluentApi (Recommend)

    You can use FluentApi also

    for example:

    var setting = FluentSettings.For<TestEntity>();
    // ExcelSetting
    setting.HasAuthor("WeihanLi")
        .HasTitle("WeihanLi.Npoi test")
        .HasDescription("WeihanLi.Npoi test")
        .HasSubject("WeihanLi.Npoi test");
    
    setting.HasSheetConfiguration(0, "SystemSettingsList", true);
    // setting.HasSheetConfiguration(1, "SystemSettingsList", 1, true);
    
    // setting.HasFilter(0, 1).HasFreezePane(0, 1, 2, 1);
    
    setting.Property(_ => _.SettingId)
        .HasColumnIndex(0);
    
    setting.Property(_ => _.SettingName)
        .HasColumnTitle("SettingName")
        .HasColumnIndex(1);
    
    setting.Property(_ => _.DisplayName)
        .HasOutputFormatter((entity, displayName) => $"AAA_{entity.SettingName}_{displayName}")
        .HasInputFormatter((entity, originVal) => originVal.Split(new[] { '_' })[2])
        .HasColumnTitle("DisplayName")
        .HasColumnIndex(2);
    
    setting.Property(_ => _.SettingValue)
        .HasColumnTitle("SettingValue")
        .HasColumnIndex(3);
    
    setting.Property(_ => _.CreatedTime)
        .HasColumnTitle("CreatedTime")
        .HasColumnIndex(4)
        .HasColumnWidth(10)
        .HasColumnFormatter("yyyy-MM-dd HH:mm:ss");
    
    setting.Property(_ => _.CreatedBy)
        .HasColumnInputFormatter(x => x += "_test")
        .HasColumnIndex(4)
        .HasColumnTitle("CreatedBy");
    
    setting.Property(x => x.Enabled)
        .HasColumnInputFormatter(val => "Enabled".Equals(val))
        .HasColumnOutputFormatter(v => v ? "Enabled" : "Disabled");
    
    setting.Property("HiddenProp")
        .HasOutputFormatter((entity, val) => $"HiddenProp_{entity.PKID}");
    
    setting.Property(_ => _.PKID).Ignored();
    setting.Property(_ => _.UpdatedBy).Ignored();
    setting.Property(_ => _.UpdatedTime).Ignored();
    

More

see some articles here: https://weihanli.github.io/WeihanLi.Npoi/docs/articles/intro.html

more usage:

  1. 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 *.xls file
    var workbook = PrepareWorkbook(bool isXls);
    
    // prepare a workbook whether *.xls file and custom excel setting
    var workbook = PrepareWorkbook(bool isXlsx, ExcelSetting excelSetting);
    
  2. 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)
    
    void SetCellValue([NotNull] this ICell cell, object value)
    
    byte[] ToCsvBytes<TEntity>(this IEnumerable<TEntity> entities, bool includeHeader)
    
    ToCsvFile<TEntity>(this IEnumerable<TEntity> entities, string filePath, bool includeHeader)
    
    void ToCsvFile(this DataTable dt, string filePath, bool includeHeader)
    
    byte[] ToCsvBytes(this DataTable dt, bool includeHeader)
    
    

Samples

Acknowledgements

  • Thanks for the contributors and users for this project
  • Thanks JetBrains for the open source ReSharper license

Contact

Contact me: [email protected]

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].