码迷,mamicode.com
首页 > 数据库 > 详细

Excel导入数据库

时间:2014-08-15 10:51:59      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:excel   excel导入数据库   npoi导入   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Configuration;
using System.Data.SqlClient;
using System.IO;
using NPOI.HSSF.UserModel;
using NPOI.SS.UserModel;
using System.Data;






if (FileUpload1.HasFile)//判断是否包含文件
        {
            ImportExcel(FileUpload1.FileBytes);
        }
public void ImportExcel(byte[] b)
    {
        System.IO.MemoryStream ms = new MemoryStream(b);
        HSSFWorkbook workbook = new HSSFWorkbook(ms);
        ISheet sheet = workbook.GetSheet(workbook.GetSheetName(0));
        for (int i = 1; i <= sheet.LastRowNum; i++)//遍历行
        {
            string str = "";
            for (int j = 0; j < sheet.GetRow(i).LastCellNum; j++)//遍历列
            {
                str +=  sheet.GetRow(i).GetCell(j).ToString() + ",";
            }
            str = str.Substring(0, str.Length - 1);//
            //=========================添加数据库======================
            
            //=========================================================
        }
    }


*类库去我的下载里面下载

本文出自 “程序猿的家” 博客,请务必保留此出处http://962410314.blog.51cto.com/7563109/1540296

Excel导入数据库,布布扣,bubuko.com

Excel导入数据库

标签:excel   excel导入数据库   npoi导入   

原文地址:http://962410314.blog.51cto.com/7563109/1540296

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!