WeihanLi.Npoi
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
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);
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);
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
Attributes
Add
ColumnAttributeon the property of the entity which you used for export or importAdd
SheetAttributeon the entity which you used for export or import,you can set theStartRowIndexon your need(by default it is1)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; }
}
FluentApi
You can also use FluentApi above version
1.0.3for 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: weihanli@outlook.com
WeihanLi.Npoi的更多相关文章
- 使用 WeihanLi.Npoi 操作 CSV
使用 WeihanLi.Npoi 操作 CSV Intro 最近发现 csv 文件在很多情况下都在使用,而且经过大致了解,csv 格式简单,相比 excel 文件要小很多,读取也很是方便,而且也很通用 ...
- WeihanLi.Npoi 导出支持自定义列内容啦
WeihanLi.Npoi 导出支持自定义列内容啦 Intro 之前也有网友给提出过希望列合并或者自定义列内容的 issue 或请求,起初因为自己做 WeihanLi.Npoi 这个扩展的最初目的是导 ...
- WeihanLi.Npoi 近期更新
WeihanLi.Npoi 近期更新 Intro 最近对我的 NPOI 扩展做了一些改变,一方面提高性能,一方面修复bug,增加一些新的功能来让它更加好用,前几天发布了 1.5.0 版本,下面来介绍一 ...
- WeihanLi.Npoi 支持 ShadowProperty 了
WeihanLi.Npoi 支持 ShadowProperty 了 Intro 在 EF 里有个 ShadowProperty (阴影属性/影子属性)的概念,你可以通过 FluentAPI 的方式来定 ...
- WeihanLi.Npoi 1.7.0 更新
WeihanLi.Npoi 1.7.0 更新介绍 Intro 昨天晚上发布了 WeihanLi.Npoi 1.7.0 版本,增加了 ColumnInputFormatter/ColumnOutputF ...
- WeihanLi.Npoi 根据模板导出Excel
WeihanLi.Npoi 根据模板导出Excel Intro 原来的导出方式比较适用于比较简单的导出,每一条数据在一行,数据列虽然自定义程度比较高,如果要一条数据对应多行就做不到了,于是就想支持根据 ...
- WeihanLi.Npoi 1.10.0 更新日志
WeihanLi.Npoi 1.10.0 更新日志 Intro 上周有个网友希望能够导入Excel时提供一个 EndRowIndex 来自己控制结束行和根据字段过滤的,周末找时间做了一下这个 feat ...
- WeihanLi.Npoi 1.11.0/1.12.0 Release Notes
WeihanLi.Npoi 1.11.0/1.12.0 Release Notes Intro 最近 NPOI 扩展新更新了两个版本,感谢 shaka chow 的帮忙和支持,这两个 Feature ...
- WeihanLi.Npoi 1.13.0 更新日志
WeihanLi.Npoi 1.13.0 更新日志 Intro 在 Github 上收到 Issue 收到网友反馈希望支持自动分 Sheet 导出,有兴趣的可以参考 Issue https://git ...
随机推荐
- MySQL基础操/下
MySQL基础操 一.自增补充 desc (表名)t1: 查看表格信息内容 表的信息 show create table t1(表名):也是查看信息,还不多是横向查看 show create tabl ...
- CentOS 7 快速初始化脚本 for MySQL
#!/bin/bash## CentOS 7.x # SSH configuresshd_port=22 # Disable SElinuxprintf "Disable SElinux.. ...
- SQL Server 查询性能优化——创建索引原则(一)(转载)
索引是什么?索引是提高查询性能的一个重要工具,索引就是把查询语句所需要的少量数据添加到索引分页中,这样访问数据时只要访问少数索引的分页就可以.但是索引对于提高查询性能也不是万能的,也不是建立越多的索引 ...
- [LeetCode] Subarray Product Less Than K 子数组乘积小于K
Your are given an array of positive integers nums. Count and print the number of (contiguous) subarr ...
- react组件开发规范(一)
这是通过修改项目运行在Google上时的警告,总结的的部分react组件开发规范: (1)编写组件时,一定要写PropTypes,切莫为了省事儿而不写! 如果一个Props不是required,一定在 ...
- mybatis学习一
1:ORM概念 ORM(OBJECT-RELATIONSHIP MAPPING) 即对象关系映射,是一种思想,实质是将数据库中的数据用对象的形式表现出来 JPA(JAVA PERSISIT ...
- bzoj 4545: DQS的trie
Description DQS的自家阳台上种着一棵颗粒饱满.颜色纯正的trie. DQS的trie非常的奇特,它初始有n0个节点,n0-1条边,每条边上有一个字符.并且,它拥有极强的生长力:某个i时刻 ...
- 【bzoj4571 scoi2016】美味
题目描述 一家餐厅有 n 道菜,编号 1...n ,大家对第 i 道菜的评价值为 ai(1<=i<=n).有 m 位顾客,第 i 位顾客的期望值为 bi,而他的偏好值为 xi .因此,第 ...
- ●BZOJ 4821 [Sdoi2017]相关分析
题链: http://www.lydsy.com/JudgeOnline/problem.php?id=4821 题解: 线段树是真的恶心,(也许是我的方法麻烦了一些吧)首先那个式子可以做如下化简: ...
- hdu 5120(2014北京—求圆相交)
题意:求环的相交面积 思路: 通过画图可知,面积= 大圆相交面积 - 大小圆相交面积*2 + 小小圆相交面积 再通过圆相交模板计算即可 #include <iostream> #incl ...