2021-04-16 19:38:01 +08:00
[![NuGet ](https://img.shields.io/nuget/v/MiniExcel.svg )](https://www.nuget.org/packages/MiniExcel) [![ ](https://img.shields.io/nuget/dt/MiniExcel.svg )](https://www.nuget.org/packages/MiniExcel) [![Build status ](https://ci.appveyor.com/api/projects/status/b2vustrwsuqx45f4/branch/master?svg=true )](https://ci.appveyor.com/project/shps951023/miniexcel/branch/master) [![.NET Framework ](https://img.shields.io/badge/.NET%20Framework-%3E%3D%204.5-red.svg )](#) [![.NET Standard ](https://img.shields.io/badge/.NET%20Standard-%3E%3D%202.0-red.svg )](#) [![.NET ](https://img.shields.io/badge/.NET%20-%3E%3D%205.0-red.svg )](#)
2021-03-31 17:18:20 +08:00
---
2021-04-14 14:37:55 +08:00
[English ](README.md ) / [简体中文 ](README.zh-CN.md ) / [繁體中文 ](README.zh-Hant.md )
2021-03-31 17:18:20 +08:00
2021-04-13 23:33:01 +08:00
----
2021-04-29 14:16:33 +08:00
QQ : 813100564 [![.NET MiniExcel 交流群 ](https://pub.idqqimg.com/wpa/images/group.png ".NET MiniExcel 交流群" )](https://qm.qq.com/cgi-bin/qm/qr?k=3OkxuL14sXhJsUimWK8wx_Hf28Wl49QE& jump_from=webapi) / 459050029 (dotnet china)
2021-04-13 23:33:01 +08:00
2021-03-31 17:18:20 +08:00
---
### 简介
2021-04-14 14:37:55 +08:00
MiniExcel简单、高效避免OOM的.NET处理Excel查、写、填充数据工具。
2021-03-31 17:18:20 +08:00
2021-04-14 14:37:55 +08:00
目前主流框架大多需要将数据全载入到内存方便操作, 但这会导致内存消耗问题, MiniExcel 尝试以 Stream 角度写底层算法逻辑, 能让原本1000多MB占用降低到几MB, 避免内存不够情况。
2021-03-31 17:18:20 +08:00
2021-04-24 14:39:40 +08:00
![image ](https://user-images.githubusercontent.com/12729184/113120478-33d59980-9244-11eb-8675-a49651c8af67.png )
2021-03-31 17:18:20 +08:00
### 特点
- 低内存耗用, 避免OOM(out of memoery)、频繁 Full GC 情况
- 支持`即时`操作每行数据
2021-04-14 14:37:55 +08:00
![miniexcel_lazy_load ](https://user-images.githubusercontent.com/12729184/111034290-e5588a80-844f-11eb-8c84-6fdb6fb8f403.gif )
2021-03-31 17:18:20 +08:00
- 兼具搭配 LINQ 延迟查询特性,能办到低消耗、快速分页等复杂查询
2021-04-27 11:00:10 +08:00
- 轻量,不需要安装 Microsoft Office、COM+、不依赖任何套件, DLL小于100KB
2021-04-14 14:37:55 +08:00
- 简便操作的 API 风格
2021-04-26 10:36:56 +08:00
### 快速开始
2021-04-14 14:37:55 +08:00
2021-04-14 14:56:52 +08:00
- [读 Excel ](#getstart1 )
- [写 Excel ](#getstart2 )
- [模板填充 Excel ](#getstart3 )
- [Excel Column Name/Index/Ignore Attribute ](#getstart4 )
2021-04-27 11:00:10 +08:00
- [例子 ](#getstart5 )
2021-04-14 14:37:55 +08:00
2021-03-31 17:18:20 +08:00
2021-04-13 18:40:04 +08:00
2021-03-31 17:18:20 +08:00
### 安装
请查看 [from NuGet ](https://www.nuget.org/packages/MiniExcel )
### 更新日志
2021-04-23 14:28:24 +08:00
请查看 [Release Notes ](docs )
2021-03-31 17:18:20 +08:00
2021-04-13 23:33:01 +08:00
### TODO
2021-03-31 17:18:20 +08:00
2021-04-14 14:37:55 +08:00
请查看 [TODO ](https://github.com/shps951023/MiniExcel/projects/1?fullscreen=true )
2021-03-31 17:18:20 +08:00
### 性能测试
2021-05-05 11:54:33 +08:00
以 [**Test1,000,000x10.xlsx** ](benchmarks/MiniExcel.Benchmarks/Test1%2C000%2C000x10.xlsx ) 做基准与主流框架做性能测试,总共 1千万笔 "HelloWorld",文件大小 23 MB
2021-03-31 17:18:20 +08:00
2021-05-05 11:54:33 +08:00
Benchmarks 逻辑可以在 [MiniExcel.Benchmarks ](benchmarks/MiniExcel.Benchmarks/Program.cs ) 查看或是提交 PR, 运行指令
2021-03-31 17:18:20 +08:00
```
dotnet run -p .\benchmarks\MiniExcel.Benchmarks\ -c Release -f netcoreapp3.1 -- -f * --join
```
最后一次运行结果 :
```
BenchmarkDotNet=v0.12.1, OS=Windows 10.0.19042
Intel Core i7-7700 CPU 3.60GHz (Kaby Lake), 1 CPU, 8 logical and 4 physical cores
[Host] : .NET Framework 4.8 (4.8.4341.0), X64 RyuJIT
Job-ZYYABG : .NET Framework 4.8 (4.8.4341.0), X64 RyuJIT
IterationCount=3 LaunchCount=3 WarmupCount=3
```
| Method | 最大内存耗用 | 平均时间 | Gen 0 | Gen 1 | Gen 2 |
2021-04-14 14:37:55 +08:00
| ---------------------------- | -------------: | ---------------: | -----------: | ----------: | ---------: |
| 'MiniExcel QueryFirst' | 0.109 MB | 726.4 us | - | - | - |
| 'ExcelDataReader QueryFirst' | 15.24 MB | 10,664,238.2 us | 566000.0000 | 1000.0000 | - |
| 'MiniExcel Query' | 17.3 MB | 14,179,334.8 us | 367000.0000 | 96000.0000 | 7000.0000 |
| 'ExcelDataReader Query' | 17.3 MB | 22,565,088.7 us | 1210000.0000 | 2000.0000 | - |
| 'Epplus QueryFirst' | 1,452 MB | 18,198,015.4 us | 535000.0000 | 132000.0000 | 9000.0000 |
| 'Epplus Query' | 1,451 MB | 23,647,471.1 us | 1451000.0000 | 133000.0000 | 9000.0000 |
| 'OpenXmlSDK Query' | 1,412 MB | 52,003,270.1 us | 978000.0000 | 353000.0000 | 11000.0000 |
| 'OpenXmlSDK QueryFirst' | 1,413 MB | 52,348,659.1 us | 978000.0000 | 353000.0000 | 11000.0000 |
| 'ClosedXml QueryFirst' | 2,158 MB | 66,188,979.6 us | 2156000.0000 | 575000.0000 | 9000.0000 |
| 'ClosedXml Query' | 2,184 MB | 191,434,126.6 us | 2165000.0000 | 577000.0000 | 10000.0000 |
2021-03-31 17:18:20 +08:00
| Method | 最大内存耗用 | 平均时间 | Gen 0 | Gen 1 | Gen 2 |
2021-04-14 14:37:55 +08:00
| ------------------------ | -------------: | ---------------: | -----------: | -----------: | ---------: |
| 'MiniExcel Create Xlsx' | 15 MB | 11,531,819.8 us | 1020000.0000 | - | - |
| 'Epplus Create Xlsx' | 1,204 MB | 22,509,717.7 us | 1370000.0000 | 60000.0000 | 30000.0000 |
| 'OpenXmlSdk Create Xlsx' | 2,621 MB | 42,473,998.9 us | 1370000.0000 | 460000.0000 | 50000.0000 |
| 'ClosedXml Create Xlsx' | 7,141 MB | 140,939,928.6 us | 5520000.0000 | 1500000.0000 | 80000.0000 |
2021-03-31 17:18:20 +08:00
2021-04-14 14:37:55 +08:00
2021-04-14 14:56:52 +08:00
### 读 Excel <a name="getstart1"></a>
2021-04-14 14:37:55 +08:00
#### 1. Query 查询 Excel 返回`强型别` IEnumerable 数据 [[Try it]](https://dotnetfiddle.net/w5WD1J)
2021-03-31 17:18:20 +08:00
2021-04-29 17:25:43 +08:00
```csharp
2021-03-31 17:18:20 +08:00
public class UserAccount
{
public Guid ID { get; set; }
public string Name { get; set; }
public DateTime BoD { get; set; }
public int Age { get; set; }
public bool VIP { get; set; }
public decimal Points { get; set; }
}
var rows = MiniExcel.Query< UserAccount > (path);
// or
using (var stream = File.OpenRead(path))
var rows = stream.Query< UserAccount > ();
```
![image ](https://user-images.githubusercontent.com/12729184/111107423-c8c46b80-8591-11eb-982f-c97a2dafb379.png )
2021-04-14 14:37:55 +08:00
#### 2. Query 查询 Excel 返回`Dynamic` IEnumerable 数据 [[Try it]](https://dotnetfiddle.net/w5WD1J)
2021-03-31 17:18:20 +08:00
* Key 系统预设为 `A,B,C,D...Z`
2021-04-14 14:37:55 +08:00
| MiniExcel | 1 |
| -------- | -------- |
| Github | 2 |
2021-03-31 17:18:20 +08:00
2021-04-29 17:25:43 +08:00
```csharp
2021-04-14 14:37:55 +08:00
2021-03-31 17:18:20 +08:00
var rows = MiniExcel.Query(path).ToList();
// or
using (var stream = File.OpenRead(path))
{
var rows = stream.Query().ToList();
Assert.Equal("MiniExcel", rows[0].A);
Assert.Equal(1, rows[0].B);
Assert.Equal("Github", rows[1].A);
Assert.Equal(2, rows[1].B);
}
```
2021-04-14 14:37:55 +08:00
#### 3. 查询数据以第一行数据当Key [[Try it]](https://dotnetfiddle.net/w5WD1J)
2021-03-31 17:18:20 +08:00
2021-04-14 14:37:55 +08:00
注意 : 同名以右边数据为准
2021-03-31 17:18:20 +08:00
Input Excel :
2021-04-14 14:37:55 +08:00
| Column1 | Column2 |
| -------- | -------- |
| MiniExcel | 1 |
| Github | 2 |
2021-03-31 17:18:20 +08:00
2021-04-29 17:25:43 +08:00
```csharp
2021-04-14 14:37:55 +08:00
2021-03-31 17:18:20 +08:00
var rows = MiniExcel.Query(useHeaderRow:true).ToList();
// or
using (var stream = File.OpenRead(path))
{
var rows = stream.Query(useHeaderRow:true).ToList();
Assert.Equal("MiniExcel", rows[0].Column1);
Assert.Equal(1, rows[0].Column2);
Assert.Equal("Github", rows[1].Column1);
Assert.Equal(2, rows[1].Column2);
}
```
2021-04-14 14:37:55 +08:00
#### 4. Query 查询支援延迟加载(Deferred Execution), 能配合LINQ First/Take/Skip办到低消耗、高效率复杂查询
2021-03-31 17:18:20 +08:00
2021-04-15 18:06:11 +08:00
举例 : 查询第一笔数据
2021-04-29 17:25:43 +08:00
```csharp
2021-03-31 17:18:20 +08:00
var row = MiniExcel.Query(path).First();
Assert.Equal("HelloWorld", row.A);
// or
using (var stream = File.OpenRead(path))
{
var row = stream.Query().First();
Assert.Equal("HelloWorld", row.A);
}
```
2021-04-15 18:06:11 +08:00
与其他框架效率比较 :
![queryfirst ](https://user-images.githubusercontent.com/12729184/111072392-6037a900-8515-11eb-9693-5ce2dad1e460.gif )
2021-04-14 14:37:55 +08:00
#### 5. 查询指定 Sheet 名称
2021-04-29 17:25:43 +08:00
```csharp
2021-04-14 14:37:55 +08:00
MiniExcel.Query(path, sheetName: "SheetName");
//or
stream.Query(sheetName: "SheetName");
```
#### 6. 查询所有 Sheet 名称跟数据
2021-04-29 17:25:43 +08:00
```csharp
2021-04-14 14:37:55 +08:00
var sheetNames = MiniExcel.GetSheetNames(path).ToList();
foreach (var sheetName in sheetNames)
{
var rows = MiniExcel.Query(path, sheetName: sheetName);
}
```
2021-04-14 15:42:05 +08:00
#### 7. 查询所有栏(列)
2021-04-29 17:25:43 +08:00
```csharp
2021-04-14 15:42:05 +08:00
var columns = MiniExcel.GetColumns(path); // e.g result : ["A","B"...]
var cnt = columns.Count; // get column count
```
#### 8. Dynamic Query 转成 `IDictionary<string,object>` 数据
2021-03-31 17:18:20 +08:00
2021-04-29 17:25:43 +08:00
```csharp
2021-04-14 14:37:55 +08:00
foreach(IDictionary< string , object > row in MiniExcel.Query(path))
{
//..
}
```
2021-04-30 17:59:12 +08:00
#### 9. Query 读 Excel 返回 DataTable
2021-04-14 14:37:55 +08:00
2021-04-30 17:59:12 +08:00
提醒 : 不建议使用, 因为DataTable会将数据`全载入内存`, 失去MiniExcel低内存消耗功能。
```C#
var table = MiniExcel.QueryAsDataTable(path, useHeaderRow: true);
```
![image ](https://user-images.githubusercontent.com/12729184/116673475-07917200-a9d6-11eb-947e-a6f68cce58df.png )
2021-04-14 14:37:55 +08:00
2021-04-14 14:56:52 +08:00
### 写 Excel <a name="getstart2"></a>
2021-04-14 14:37:55 +08:00
1. 必须是非abstract 类别有公开无参数构造函数
2. MiniExcel SaveAs 支援 `IEnumerable参数延迟查询` ,除非必要请不要使用 ToList 等方法读取全部数据到内存
2021-03-31 17:18:20 +08:00
图片 : 是否呼叫 ToList 的内存差别
2021-04-14 14:37:55 +08:00
#### ![image](https://user-images.githubusercontent.com/12729184/112587389-752b0b00-8e38-11eb-8a52-cfb76c57e5eb.png)1. Anonymous or strongly type [[Try it]](https://dotnetfiddle.net/w5WD1J)
2021-03-31 17:18:20 +08:00
2021-04-29 17:25:43 +08:00
```csharp
2021-03-31 17:18:20 +08:00
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.xlsx");
MiniExcel.SaveAs(path, new[] {
new { Column1 = "MiniExcel", Column2 = 1 },
new { Column1 = "Github", Column2 = 2}
});
```
2021-04-14 14:37:55 +08:00
#### 2. Datatable:
2021-03-31 17:18:20 +08:00
2021-04-23 14:28:24 +08:00
- 优先使用 Caption 当栏位名称
2021-04-29 17:25:43 +08:00
```csharp
2021-03-31 17:18:20 +08:00
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.xlsx");
var table = new DataTable();
{
table.Columns.Add("Column1", typeof(string));
table.Columns.Add("Column2", typeof(decimal));
table.Rows.Add("MiniExcel", 1);
table.Rows.Add("Github", 2);
}
MiniExcel.SaveAs(path, table);
```
2021-04-14 14:37:55 +08:00
#### 3. Dapper
2021-03-31 17:18:20 +08:00
2021-04-29 17:25:43 +08:00
```csharp
2021-03-31 17:18:20 +08:00
using (var connection = GetConnection(connectionString))
{
var rows = connection.Query(@"select 'MiniExcel' as Column1,1 as Column2 union all select 'Github',2");
MiniExcel.SaveAs(path, rows);
}
```
2021-04-14 14:37:55 +08:00
#### 4. `IEnumerable<IDictionary<string, object>>`
2021-03-31 17:18:20 +08:00
2021-04-29 17:25:43 +08:00
```csharp
2021-03-31 17:18:20 +08:00
var values = new List< Dictionary < string , object > >()
{
new Dictionary< string , object > {{ "Column1", "MiniExcel" }, { "Column2", 1 } },
new Dictionary< string , object > {{ "Column1", "Github" }, { "Column2", 2 } }
};
MiniExcel.SaveAs(path, values);
```
output :
2021-04-14 14:37:55 +08:00
| Column1 | Column2 |
| -------- | -------- |
| MiniExcel | 1 |
| Github | 2 |
2021-03-31 17:18:20 +08:00
2021-04-30 17:59:12 +08:00
#### 5. SaveAs 支持 Stream [[Try it]](https://dotnetfiddle.net/JOen0e)
2021-04-13 23:33:01 +08:00
2021-04-29 17:25:43 +08:00
```csharp
2021-04-13 23:33:01 +08:00
using (var stream = File.Create(path))
{
stream.SaveAs(values);
}
```
2021-04-30 17:59:12 +08:00
#### 6. 支持 IDataReader 参数
```csharp
MiniExcel.SaveAs(path, reader);
```
2021-04-13 23:33:01 +08:00
2021-04-14 14:56:52 +08:00
### 模板填充 Excel <a name="getstart3"></a>
2021-04-13 18:40:04 +08:00
2021-04-19 02:49:16 +08:00
- 宣告方式类似 Vue 模板 `{{变量名称}}` , 或是集合渲染 `{{集合名称.栏位名称}}`
- 集合渲染支持 IEnumerable/DataTable/DapperRow
2021-04-13 18:40:04 +08:00
#### 1. 基本填充
模板:
![image ](https://user-images.githubusercontent.com/12729184/114537556-ed8d2b00-9c84-11eb-8303-a69f62c41e5b.png )
最终效果:
![image ](https://user-images.githubusercontent.com/12729184/114537490-d8180100-9c84-11eb-8c69-db58692f3a85.png )
代码:
2021-04-29 17:25:43 +08:00
```csharp
2021-04-13 18:40:04 +08:00
// 1. By POCO
var value = new
{
Name = "Jack",
CreateDate = new DateTime(2021, 01, 01),
VIP = true,
Points = 123
};
MiniExcel.SaveAsByTemplate(path, templatePath, value);
// 2. By Dictionary
var value = new Dictionary< string , object > ()
{
["Name"] = "Jack",
["CreateDate"] = new DateTime(2021, 01, 01),
["VIP"] = true,
["Points"] = 123
};
MiniExcel.SaveAsByTemplate(path, templatePath, value);
```
2021-04-13 23:33:01 +08:00
#### 2. IEnumerable 数据填充
> Note1: 同行从左往右以第一个 IEnumerableUse 当列表来源 (不支持同列多集合)
模板:
![image ](https://user-images.githubusercontent.com/12729184/114564652-14f2f080-9ca3-11eb-831f-09e3fedbc5fc.png )
2021-04-19 15:15:06 +08:00
最终效果:
2021-04-13 23:33:01 +08:00
![image ](https://user-images.githubusercontent.com/12729184/114564204-b2015980-9ca2-11eb-900d-e21249f93f7c.png )
2021-04-19 15:15:06 +08:00
代码:
2021-03-31 17:18:20 +08:00
2021-04-29 17:25:43 +08:00
```csharp
2021-04-13 23:33:01 +08:00
//1. By POCO
var value = new
2021-03-31 17:18:20 +08:00
{
2021-04-13 23:33:01 +08:00
employees = new[] {
new {name="Jack",department="HR"},
new {name="Lisa",department="HR"},
new {name="John",department="HR"},
new {name="Mike",department="IT"},
new {name="Neo",department="IT"},
new {name="Loan",department="IT"}
}
};
MiniExcel.SaveAsByTemplate(path, templatePath, value);
//2. By Dictionary
var value = new Dictionary< string , object > ()
{
["employees"] = new[] {
new {name="Jack",department="HR"},
new {name="Lisa",department="HR"},
new {name="John",department="HR"},
new {name="Mike",department="IT"},
new {name="Neo",department="IT"},
new {name="Loan",department="IT"}
}
};
MiniExcel.SaveAsByTemplate(path, templatePath, value);
```
#### 3. 复杂数据填充
> Note: 支持多 sheet 填充,并共用同一组参数
2021-04-19 15:15:06 +08:00
模板:
2021-04-13 23:33:01 +08:00
![image ](https://user-images.githubusercontent.com/12729184/114565255-acf0da00-9ca3-11eb-8a7f-8131b2265ae8.png )
2021-04-19 15:15:06 +08:00
最终效果:
2021-04-13 23:33:01 +08:00
![image ](https://user-images.githubusercontent.com/12729184/114565329-bf6b1380-9ca3-11eb-85e3-3969e8bf6378.png )
2021-04-19 15:15:06 +08:00
代码:
2021-04-13 23:33:01 +08:00
2021-04-29 17:25:43 +08:00
```csharp
2021-04-13 23:33:01 +08:00
// 1. By POCO
var value = new
{
title = "FooCompany",
managers = new[] {
new {name="Jack",department="HR"},
new {name="Loan",department="IT"}
},
employees = new[] {
new {name="Wade",department="HR"},
new {name="Felix",department="HR"},
new {name="Eric",department="IT"},
new {name="Keaton",department="IT"}
}
};
MiniExcel.SaveAsByTemplate(path, templatePath, value);
// 2. By Dictionary
var value = new Dictionary< string , object > ()
{
["title"] = "FooCompany",
["managers"] = new[] {
new {name="Jack",department="HR"},
new {name="Loan",department="IT"}
},
["employees"] = new[] {
new {name="Wade",department="HR"},
new {name="Felix",department="HR"},
new {name="Eric",department="IT"},
new {name="Keaton",department="IT"}
}
};
MiniExcel.SaveAsByTemplate(path, templatePath, value);
2021-03-31 17:18:20 +08:00
```
2021-04-13 23:33:01 +08:00
#### 4. 大数据填充效率比较
> NOTE: 在 MiniExcel 使用 IEnumerable 延迟 ( 不ToList ) 可以节省内存使用
![image ](https://user-images.githubusercontent.com/12729184/114577091-5046ec80-9cae-11eb-924b-087c7becf8da.png )
2021-04-15 10:36:52 +08:00
#### 5. Cell 值自动类别对应
2021-04-19 15:15:06 +08:00
模板
2021-04-15 10:36:52 +08:00
![image ](https://user-images.githubusercontent.com/12729184/114802504-64830a80-9dd0-11eb-8d56-8e8c401b3ace.png )
2021-04-19 15:15:06 +08:00
最终效果
2021-04-15 10:36:52 +08:00
![image ](https://user-images.githubusercontent.com/12729184/114802419-43221e80-9dd0-11eb-9ffe-a2ce34fe7076.png )
2021-04-19 15:15:06 +08:00
类别
2021-04-15 10:36:52 +08:00
2021-04-29 17:25:43 +08:00
```csharp
2021-04-15 10:36:52 +08:00
public class Poco
{
public string @string { get; set; }
public int? @int { get; set; }
public decimal? @decimal { get; set; }
public double? @double { get; set; }
public DateTime? datetime { get; set; }
public bool? @bool { get; set; }
public Guid? Guid { get; set; }
}
```
代码
2021-04-29 17:25:43 +08:00
```csharp
2021-04-15 10:36:52 +08:00
var poco = new TestIEnumerableTypePoco { @string = "string", @int = 123, @decimal = decimal.Parse("123.45"), @double = (double)123.33, @datetime = new DateTime(2021, 4, 1), @bool = true, @Guid = Guid.NewGuid() };
var value = new
{
Ts = new[] {
poco,
new TestIEnumerableTypePoco{},
null,
poco
}
};
MiniExcel.SaveAsByTemplate(path, templatePath, value);
```
#### 6. Example : 列出 Github 专案
2021-04-19 15:15:06 +08:00
模板
2021-04-15 10:36:52 +08:00
2021-04-17 02:34:46 +08:00
![image ](https://user-images.githubusercontent.com/12729184/115068623-12073280-9f25-11eb-9124-f4b3efcdb2a7.png )
2021-04-15 10:36:52 +08:00
2021-04-19 15:15:06 +08:00
最终效果
2021-04-15 10:36:52 +08:00
2021-04-17 02:34:46 +08:00
![image ](https://user-images.githubusercontent.com/12729184/115068639-1a5f6d80-9f25-11eb-9f45-27c434d19a78.png )
2021-04-15 10:36:52 +08:00
2021-04-19 15:15:06 +08:00
代码
2021-04-15 10:36:52 +08:00
2021-04-29 17:25:43 +08:00
```csharp
2021-04-15 10:36:52 +08:00
var projects = new[]
{
new {Name = "MiniExcel",Link="https://github.com/shps951023/MiniExcel",Star=146, CreateTime=new DateTime(2021,03,01)},
new {Name = "HtmlTableHelper",Link="https://github.com/shps951023/HtmlTableHelper",Star=16, CreateTime=new DateTime(2020,02,01)},
new {Name = "PocoClassGenerator",Link="https://github.com/shps951023/PocoClassGenerator",Star=16, CreateTime=new DateTime(2019,03,17)}
};
var value = new
{
User = "ITWeiHan",
Projects = projects,
TotalStar = projects.Sum(s => s.Star)
};
MiniExcel.SaveAsByTemplate(path, templatePath, value);
```
2021-04-29 17:25:43 +08:00
#### 7. DataTable 当参数
```csharp
var managers = new DataTable();
{
managers.Columns.Add("name");
managers.Columns.Add("department");
managers.Rows.Add("Jack", "HR");
managers.Rows.Add("Loan", "IT");
}
var value = new Dictionary< string , object > ()
{
["title"] = "FooCompany",
["managers"] = managers,
};
MiniExcel.SaveAsByTemplate(path, templatePath, value);
```
2021-04-15 10:36:52 +08:00
2021-04-13 23:33:01 +08:00
2021-04-14 14:56:52 +08:00
### Excel Column Name/Index/Ignore Attribute <a name="getstart4"></a>
2021-04-02 17:59:57 +08:00
e.g
input excel :
2021-04-10 03:27:29 +08:00
![image ](https://user-images.githubusercontent.com/12729184/114230869-3e163700-99ac-11eb-9a90-2039d4b4b313.png )
2021-04-02 17:59:57 +08:00
2021-04-29 17:25:43 +08:00
```csharp
2021-04-02 17:59:57 +08:00
public class ExcelAttributeDemo
{
[ExcelColumnName("Column1")]
public string Test1 { get; set; }
[ExcelColumnName("Column2")]
public string Test2 { get; set; }
[ExcelIgnore]
public string Test3 { get; set; }
2021-04-10 03:27:29 +08:00
[ExcelColumnIndex("I")] // system will convert "I" to 8 index
public string Test4 { get; set; }
public string Test5 { get; } //wihout set will ignore
public string Test6 { get; private set; } //un-public set will ignore
[ExcelColumnIndex(3)] // start with 0
public string Test7 { get; set; }
2021-04-02 17:59:57 +08:00
}
var rows = MiniExcel.Query< ExcelAttributeDemo > (path).ToList();
Assert.Equal("Column1", rows[0].Test1);
Assert.Equal("Column2", rows[0].Test2);
Assert.Null(rows[0].Test3);
2021-04-10 03:27:29 +08:00
Assert.Equal("Test7", rows[0].Test4);
2021-04-02 17:59:57 +08:00
Assert.Null(rows[0].Test5);
Assert.Null(rows[0].Test6);
2021-04-10 03:27:29 +08:00
Assert.Equal("Test4", rows[0].Test7);
2021-04-02 17:59:57 +08:00
```
2021-04-14 14:37:55 +08:00
2021-04-14 14:56:52 +08:00
### Excel 类别自动判断 <a name="getstart5"></a>
2021-04-14 14:37:55 +08:00
MiniExcel 预设会根据扩展名或是 Stream 类别判断是 xlsx 还是 csv, 但会有失准时候, 请自行指定。
2021-04-02 17:59:57 +08:00
2021-04-29 17:25:43 +08:00
```csharp
2021-04-14 14:37:55 +08:00
stream.SaveAs(excelType:ExcelType.CSV);
2021-04-08 10:22:50 +08:00
//or
2021-04-14 14:37:55 +08:00
stream.SaveAs(excelType:ExcelType.XLSX);
//or
stream.Query(excelType:ExcelType.CSV);
//or
stream.Query(excelType:ExcelType.XLSX);
2021-04-08 10:22:50 +08:00
```
2021-04-02 17:59:57 +08:00
2021-04-27 11:00:10 +08:00
### 例子
2021-04-14 14:37:55 +08:00
#### 1. SQLite & Dapper 读取大数据新增到数据库
2021-03-31 17:18:20 +08:00
note : 请不要呼叫 call ToList/ToArray 等方法,这会将所有数据读到内存内
2021-04-29 17:25:43 +08:00
```csharp
2021-03-31 17:18:20 +08:00
using (var connection = new SQLiteConnection(connectionString))
{
connection.Open();
using (var transaction = connection.BeginTransaction())
using (var stream = File.OpenRead(path))
{
2021-04-14 14:37:55 +08:00
var rows = stream.Query();
foreach (var row in rows)
connection.Execute("insert into T (A,B) values (@A,@B)", new { row.A, row.B }, transaction: transaction);
transaction.Commit();
2021-03-31 17:18:20 +08:00
}
}
```
效能:
![image ](https://user-images.githubusercontent.com/12729184/111072579-2dda7b80-8516-11eb-9843-c01a1edc88ec.png )
2021-04-26 16:34:08 +08:00
#### 2. ASP.NET Core 3.1 or MVC 5 下载/上传 Excel Xlsx API Demo [Try it](tests/MiniExcel.Tests.AspNetCore)
2021-03-31 17:18:20 +08:00
2021-04-29 17:25:43 +08:00
```csharp
2021-04-26 16:34:08 +08:00
public class ApiController : Controller
2021-03-31 17:18:20 +08:00
{
2021-04-19 15:15:06 +08:00
public IActionResult Index()
{
return new ContentResult
{
ContentType = "text/html",
StatusCode = (int)HttpStatusCode.OK,
Content = @"< html > < body >
2021-04-29 14:16:33 +08:00
< a href = 'api/DownloadExcel' > DownloadExcel< / a > < br >
< a href = 'api/DownloadExcelFromTemplatePath' > DownloadExcelFromTemplatePath< / a > < br >
< a href = 'api/DownloadExcelFromTemplateBytes' > DownloadExcelFromTemplateBytes< / a > < br >
2021-04-26 16:34:08 +08:00
< p > Upload Excel< / p >
< form method = 'post' enctype = 'multipart/form-data' action = '/api/uploadexcel' >
< input type = 'file' name = 'excel' > < br >
< input type = 'submit' >
< / form >
2021-04-19 15:15:06 +08:00
< / body > < / html > "
};
}
2021-04-18 00:13:41 +08:00
public IActionResult DownloadExcel()
2021-03-31 17:18:20 +08:00
{
var values = new[] {
new { Column1 = "MiniExcel", Column2 = 1 },
new { Column1 = "Github", Column2 = 2}
};
2021-04-18 10:57:50 +08:00
var memoryStream = new MemoryStream();
memoryStream.SaveAs(values);
memoryStream.Seek(0, SeekOrigin.Begin);
return new FileStreamResult(memoryStream, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
{
FileDownloadName = "demo.xlsx"
};
2021-04-18 00:13:41 +08:00
}
2021-04-19 15:15:06 +08:00
public IActionResult DownloadExcelFromTemplatePath()
2021-04-18 00:13:41 +08:00
{
2021-04-19 15:15:06 +08:00
string templatePath = "TestTemplateComplex.xlsx";
Dictionary< string , object > value = new Dictionary< string , object > ()
2021-04-18 00:13:41 +08:00
{
["title"] = "FooCompany",
["managers"] = new[] {
new {name="Jack",department="HR"},
new {name="Loan",department="IT"}
},
["employees"] = new[] {
new {name="Wade",department="HR"},
new {name="Felix",department="HR"},
new {name="Eric",department="IT"},
new {name="Keaton",department="IT"}
}
};
2021-04-19 15:15:06 +08:00
MemoryStream memoryStream = new MemoryStream();
2021-04-18 10:57:50 +08:00
memoryStream.SaveAsByTemplate(templatePath, value);
memoryStream.Seek(0, SeekOrigin.Begin);
return new FileStreamResult(memoryStream, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
{
FileDownloadName = "demo.xlsx"
};
}
2021-04-19 15:15:06 +08:00
private static Dictionary< string , Byte [ ] > TemplateBytesCache = new Dictionary< string , byte [ ] > ();
2021-04-26 16:34:08 +08:00
static ApiController()
2021-04-19 15:15:06 +08:00
{
string templatePath = "TestTemplateComplex.xlsx";
byte[] bytes = System.IO.File.ReadAllBytes(templatePath);
TemplateBytesCache.Add(templatePath, bytes);
}
public IActionResult DownloadExcelFromTemplateBytes()
2021-04-18 10:57:50 +08:00
{
2021-04-19 15:15:06 +08:00
byte[] bytes = TemplateBytesCache["TestTemplateComplex.xlsx"];
Dictionary< string , object > value = new Dictionary< string , object > ()
2021-04-18 10:57:50 +08:00
{
["title"] = "FooCompany",
["managers"] = new[] {
new {name="Jack",department="HR"},
new {name="Loan",department="IT"}
},
["employees"] = new[] {
new {name="Wade",department="HR"},
new {name="Felix",department="HR"},
new {name="Eric",department="IT"},
new {name="Keaton",department="IT"}
}
};
2021-04-19 15:15:06 +08:00
MemoryStream memoryStream = new MemoryStream();
memoryStream.SaveAsByTemplate(bytes, value);
2021-04-18 10:57:50 +08:00
memoryStream.Seek(0, SeekOrigin.Begin);
return new FileStreamResult(memoryStream, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
{
FileDownloadName = "demo.xlsx"
};
2021-03-31 17:18:20 +08:00
}
2021-04-26 16:34:08 +08:00
public IActionResult UploadExcel(IFormFile excel)
{
var stream = new MemoryStream();
excel.CopyTo(stream);
foreach (var item in stream.Query(true))
{
// do your logic etc.
}
return Ok("File uploaded successfully");
}
2021-03-31 17:18:20 +08:00
}
```
2021-04-14 16:35:28 +08:00
#### 3. 分页查询
2021-03-31 17:18:20 +08:00
2021-04-29 17:25:43 +08:00
```csharp
2021-04-14 16:35:28 +08:00
void Main()
{
var rows = MiniExcel.Query(path);
Console.WriteLine("==== No.1 Page ====");
Console.WriteLine(Page(rows,pageSize:3,page:1));
Console.WriteLine("==== No.50 Page ====");
Console.WriteLine(Page(rows,pageSize:3,page:50));
Console.WriteLine("==== No.5000 Page ====");
Console.WriteLine(Page(rows,pageSize:3,page:5000));
}
public static IEnumerable< T > Page< T > (IEnumerable< T > en, int pageSize, int page)
{
return en.Skip(page * pageSize).Take(pageSize);
}
```
![20210419 ](https://user-images.githubusercontent.com/12729184/114679083-6ef4c400-9d3e-11eb-9f78-a86daa45fe46.gif )
2021-04-02 17:59:57 +08:00
2021-04-26 16:34:08 +08:00
### FAQ 常见问题
2021-04-15 12:12:28 +08:00
2021-04-26 10:36:56 +08:00
#### Q: Excel 表头标题名称跟 class 属性名称不一致,如何对应?
A. 请使用 ExcelColumnName 作 mapping
![image ](https://user-images.githubusercontent.com/12729184/116020475-eac50980-a678-11eb-8804-129e87200e5e.png )
2021-04-29 17:25:43 +08:00
#### Q. 多工作表(sheet)如何导出/查询数据?
A. 使用 `GetSheetNames ` 方法搭配 Query 的 sheetName 参数
```csharp
var sheets = MiniExcel.GetSheetNames(path);
foreach (var sheet in sheets)
{
Console.WriteLine($"sheet name : {sheet} ");
var rows = MiniExcel.Query(path,useHeaderRow:true,sheetName:sheet);
Console.WriteLine(rows);
}
```
![image ](https://user-images.githubusercontent.com/12729184/116199841-2a1f5300-a76a-11eb-90a3-6710561cf6db.png )
#### Q. 查询如何映射枚举(enum)?
A. 名称一样,系统会自动映射(注意:大小写不敏感)
2021-04-15 12:12:28 +08:00
2021-04-29 17:25:43 +08:00
![image ](https://user-images.githubusercontent.com/12729184/116210595-9784b100-a775-11eb-936f-8e7a8b435961.png )
2021-04-15 12:12:28 +08:00
2021-03-31 17:18:20 +08:00
### 局限与警告
- 目前不支援 xls (97-2003) 或是加密文件。
2021-04-14 14:37:55 +08:00
### 参考
- 读取逻辑 : [ExcelDataReader ](https://github.com/ExcelDataReader/ExcelDataReader ) / [ClosedXML ](https://github.com/ClosedXML/ClosedXML )
2021-04-03 12:51:03 +08:00
- API 设计方式 : [StackExchange/Dapper ](https://github.com/StackExchange/Dapper )
2021-04-14 14:37:55 +08:00
### Contributors
2021-04-03 12:51:03 +08:00
![](https://contrib.rocks/image?repo=shps951023/MiniExcel)