目录
本篇文章将讲解如何在.NET Core项目中使用NPOI实现将数据库数据导出为Excel文件,以及如何将Excel文件内容导入到数据库.
一. 将数据库文件导出为Excel文件
1. 下载Nuget包 NPOI
2. 编写接口
/// <summary>
/// 将用户信息导出为Excel
/// </summary>
/// <returns></returns>
[HttpGet("ExportExcel")]
public IActionResult ExportExcel()
{
var list = _userRepository.GetAll();
//创建一个工作簿
IWorkbook wk = new XSSFWorkbook();
ISheet sheet = wk.CreateSheet("用户信息");
//第一行标题
IRow row = sheet.CreateRow(0);
row.CreateCell(0).SetCellValue("序号");
row.CreateCell(1).SetCellValue("学号");
row.CreateCell(2).SetCellValue("姓名");
row.CreateCell(3).SetCellValue("学院");
row.CreateCell(4).SetCellValue("年级");
row.CreateCell(5).SetCellValue("专业");
row.CreateCell(6).SetCellValue("班级");
row.CreateCell(7).SetCellValue("邮箱");
row.CreateCell(8).SetCellValue("手机号");
// 写入数据
int i = 1;
foreach (var user in list)
{
row = sheet.CreateRow(i);// 创建行
row.CreateCell(0).SetCellValue(user.Id.ToString());// 序号
row.CreateCell(1).SetCellValue(user.UserName.ToString());// 学号
row.CreateCell(2).SetCellValue(user.FullName);// 姓名
row.CreateCell(3).SetCellValue(user.Academy);// 学院
row.CreateCell(4).SetCellValue(user.Grade);// 年级
row.CreateCell(5).SetCellValue(user.Major);// 专业
row.CreateCell(6).SetCellValue(user.Class);// 班级
row.CreateCell(7).SetCellValue(user.Email);// 邮箱
row.CreateCell(8).SetCellValue(user.PhoneNumber);// 手机号
i++;
}
// 写Workbook信息到内存流
byte[] buffer = null;
using (var ms = new MemoryStream())
{
wk.Write(ms);
buffer = ms.ToArray();
}
var mime = new FileExtensionContentTypeProvider().Mappings[".xlsx"];
//将buffer中的数据转换为文件
return File(buffer, mime, "学生信息.xlsx");
}
此时运行项目,发现功能成功实现了.
二. 实现将Excel信息导入到数据库
1.编写接口
/// <summary>
/// 将Excel导入到数据库
/// </summary>
/// <param name="excellFile"></param>
/// <returns></returns>
[HttpPost("ImportExcel")]
public IActionResult ImportExcel(IFormFile excellFile)
{
ResponseResultDto result = new ResponseResultDto();
var file = Request.Form.Files[0]; //获取上传的文件
string excelName = Path.GetFileName(file.FileName); //获取文件名
if (!new string[] { ".xlsx", ".xls" }.Contains(excelName))
{
result.SetError("请上传Excel文件!");
return BadRequest(result);
}
MemoryStream ms = new MemoryStream();
excellFile.CopyTo(ms);
ms.Position = 0;
IWorkbook wb = null;//创建工作簿
// 根据文件名判断是哪种类型
if (excelName.ToLower().Equals(".xls")) // 97-2003版本
{
wb = new HSSFWorkbook(ms);//创建HSSF工作簿
}
else // 2007以上版本
{
wb = new XSSFWorkbook(ms);//创建XSSF工作簿
}
ISheet sheet = wb.GetSheetAt(0);//获取第一个sheet
int totalRows = sheet.LastRowNum; // 总行数
int totalCells = sheet.GetRow(0).LastCellNum; // 总列数
List<User> userList = new List<User>();
for(int i = 1; i <= totalRows; i++)
{
IRow row = sheet.GetRow(i); // 获取行
string Id = row.GetCell(0).ToString();
string UserName = row.GetCell(1).ToString();
string FullName = row.GetCell(2).ToString();
string Academy = row.GetCell(3).ToString();
string Grade = row.GetCell(4).ToString();
string Major = row.GetCell(5).ToString();
string Class = row.GetCell(6).ToString();
string Email = row.GetCell(7).ToString();
string PhoneNumber = row.GetCell(8).ToString();
User user = new User()
{
Id = int.Parse(Id),
UserName = UserName,
FullName = FullName,
Academy = Academy,
Grade = Grade,
Major = Major,
Class = Class,
Email = Email,
PhoneNumber = PhoneNumber
};
userList.Add(user);
}
_userRepository.AddRange(userList);
wb.Close();
result.SetSuccess("导入成功!");
return Ok(result);
}
现在这个功能也就基本实现了,接口内容我这里都有写注释就不一一讲述了.