关于如果正确是用NPOI其实有一点很重要,因为是涉及前端的交互那么就需要前端传过来的文件进行识别判断存储操作,存储好了之后必然会获得到一个数据那就是文件存储的excel位置,这个很重要。
接下来进入正文,如何使用NPOI进行excel的批量的导入导出操作,首先安装NPOI的dll文件,百度有很多教程,自己动手。
前面已经总结了如果进行文件的存储判断等,现在就是进入批量导入数据库
using NPOI.HSSF.UserModel;
using NPOI.SS.UserModel;
using NPOI.XSSF.UserModel;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.Script.Serialization;
using System.Web.SessionState;
namespace ownselfManager.userIndex.view.adminSystem.used
{
/// <summary>
/// importExcel 进行excel的操作
/// </summary>
public class importExcel : IHttpHandler,IRequiresSessionState
{
public HttpRequest Request
{
get
{
return HttpContext.Current.Request;
}
}
public List<excelInfo> listData = new List<excelInfo>();//list中保存当前所有行的单元格内容,用于做测试
public void ProcessRequest(HttpContext context)
{
string msg = "";
int code = 0;
string newTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm");
string afterTime = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd HH:mm")).AddSeconds(10).ToString(); //在原始的时间上加上30s
JavaScriptSerializer json = new JavaScriptSerializer();
context.Response.ContentType = "text/plain";
if (context.Request.Files.Count > 0)
{
HttpPostedFile file = context.Request.Files["file"];
//进行excel文件的读取
string Suffix = System.IO.Path.GetExtension(file.FileName).ToLower();//获取文件后缀名
if (Suffix == ".xlsx" || Suffix == ".xls" || Suffix == ".csv")
{
string filePath = context.Server.MapPath("/userIndex/uploadFiles/") + System.IO.Path.GetFileName(file.FileName); //拿到文件保存路径,实现文件上传
file.SaveAs(filePath);
//进行数据的批量导入到数据库,利用NPOI进行操作
//写入数据流,进行操作
using (FileStream fsRead = File.OpenRead(filePath))
{
IWorkbook wk = null;
if (Suffix == ".xls")
{
//然后把就可以把filePath文件内容读取到wk对象里面
wk = new HSSFWorkbook(fsRead); //这个只能处理xls文件2017版以上
}
else if (Suffix == ".xlsx")
{
wk = new XSSFWorkbook(fsRead); //这个只能处理xlsx文件
}
//遍历数据表里面的每个sheet,数据都存在sheet中
//wk.NumberOfSheets //获取xls中sheet的个数
for (int i = 0; i < wk.NumberOfSheets; i++)
{
ISheet sheet = wk.GetSheetAt(i);//获取每个工作表对象
//获取每一行的值,这边不会拿到最后一个所以需要加等号
//这边需要判断是否符合我们前台所需要的excel文件,是否符合要求
for (int a = 1; a <= sheet.LastRowNum; a++) //如果存在行标题,且不需要导入应该从1开始
{
IRow currentRow = sheet.GetRow(a); //获取工作表中的每一行
//List<ICell> listData = new List<ICell>();//list中保存当前所有行的单元格内容
//遍历当前行中的每个单元格
for (int z = 0; z < currentRow.LastCellNum; z++)
{
//获取每个单元格的值
ICell cell = currentRow.GetCell(z);
if (cell == null || cell.CellType == CellType.Blank)
{
pms[z].Value = DBNull.Value;
}
else {
pms[z].Value = cell.ToString();
//listData.Add(cell);
}
//string values = cell.ToString();
//判断单元格是否为空
}
int y = dbUtil.ExecuteSql(Insert,pms);
if (y == 0)
{
//存入数据库失败
code = 402;
msg = "数据不能为空,并且必须按照模板格式填写,缺一不可,商品名称可为空";
var title = new { code = code, msg = msg};
var errEmty = json.Serialize(title);
context.Response.Write(errEmty);
return;
}
}
}
}
}
else {
code = 402;
msg = "文件格式不正确,只支持(xlsx/xls/csv)";
var suffixErr = new { code = code, msg = msg};
var errSuffix = json.Serialize(suffixErr);
context.Response.Write(errSuffix);
return;
}
}
}
public bool IsReusable
{
get
{
return false;
}
}
}
}
这边贴出关键代码,其实原理很简单就是对文件数据流的读取,如果文件读取正确后先判断sheet,在判断row,最后判断cell每个单元格的值,而我们也是需要拿到每个单元格的值即可,至于如何插入数据库,使用的是SqlParameter,根据其原理就可以知道,数据库的语句应该写在哪里,循环填充数值应该在哪里进行。