excel导入到数据库,这个步骤是什么?
html接收到excel,后台代码接收到excel,判断格式,(xls和xlsx)。
逐行找到各个列的信息,赋值给类的字段。
进行数据库添加!
看一下html代码
<body style="overflow-y:scroll;">
@* 这里的DataImportAll代表类,importExcel代表方法,其中btnImport中的submit属性就和importExcel方法关联,点击就会触发importExcel方法*@
@using (Html.BeginForm("DataImportAll", "importExcel", FormMethod.Post, new { enctype = "multipart/form-data", id = "form1" }))
{
<div style="margin-top: 20px; font-size:12px; width:80%; padding-left:20px;">
<fieldset id="myfieldset1">
<legend>物料数据导入</legend>
<p>
选择文件:
<input id="FileUpload" type="file" name="FileUpload" style="width: 250px; height: 24px; background: White" />
<input id="btnImport" type="submit" value="上传" style="width: 60px; height: 24px;"/>
</p>
<p style="color: Red; text-align: center;">@ViewBag.error</p> @* 提示信息(成功或失败)*@
</fieldset>
</div>
}
</body>
//将Excel导入数据库
[HttpPost]
public ActionResult DataImportAll(HttpPostedFileBase filebase)
{
HttpPostedFileBase file = Request.Files["FileUpload"];//获取上传的文件
if (file==null || file.ContentLength<0 || file.FileName=="")
{
ViewBag.error = "文件不能为空";
return View("Index");
}
else
{
//检查文件的后缀名
string filename = Path.GetFileName(file.FileName);
string fileEx = System.IO.Path.GetExtension(filename);
//得到需要的后缀名
string FileType = ".xls,xlsx";
if (!FileType.Contains(fileEx))
{
ViewBag.error = "文件格式不正确";
return View("Index");
}
Stream inputStream = file.InputStream;
XSSFWorkbook hssfworkbook = new XSSFWorkbook(inputStream);
// HSSFWorkbook hssfworkbook = new HSSFWorkbook(inputStream);
NPOI.SS.UserModel.ISheet sheet = hssfworkbook.GetSheetAt(0);//第一个sheet
int rowCount = sheet.LastRowNum;
bool flage=false;
for (int i = (sheet.FirstRowNum+1); i <=rowCount; i++)
{
IRow row = sheet.GetRow(i);
t_user user = new t_user();
if (row!=null)
{
if (row.GetCell(0)!=null)
{
user.userID = row.GetCell(0).ToString();
user.userName = row.GetCell(1).ToString();
flage = true;
}
}
}
if (flage==true)
{
ViewBag.error = "导入成功!";
return View("Index");
}
else
{
ViewBag.error = "导入失败!";
return View("Index");
}
}
}
看一下命名空间
其中还需要引用NPOI 2.2.1 binary package的几个dll。才能在命名空间上写出。下载地址 http://npoi.codeplex.com/downloads/get/1476595
using System.Web;
using System.Web.Mvc;
using System.Data;
using System.Data.SqlClient;
using System.IO;
using System.Data.OleDb;
using NPOI;
using NPOI.HPSF;
using NPOI.HSSF;
using NPOI.HSSF.UserModel;
using NPOI.SS.UserModel;
using EF_Model;
using NPOI.XSSF.UserModel;
如果是xlsx需要引用
using NPOI.XSSF.UserModel;
其中要声明这个类
XSSFWorkbook hssfworkbook = new XSSFWorkbook(inputStream);
如果是xls需要引用
using NPOI.HSSF.UserModel;
其中要声明这个类
HSSFWorkbook hssfworkbook = new HSSFWorkbook(inputStream);
谢谢大家的意见。