码迷,mamicode.com
首页 > Windows程序 > 详细

C# Excel使用NPOI

时间:2017-01-25 10:39:45      阅读:341      评论:0      收藏:0      [点我收藏+]

标签:pen   stc   error   引用   finally   运行程序   mode   mod   pre   

程序处理excel使用using Microsoft.Office.Interop.Excel方式,运行程序需要电脑安装excel,而且excel版本还需要一样,使用起来不方便。使用NPOI不用电脑安装office.

下载地址:http://npoi.codeplex.com/

下载NPOI 2.2.1 binary package.zip,解压缩里面有Net20和Net40。我使用的Net40,把里面所有的dll添加引用。

 

读excel

using NPOI.HSSF.UserModel;
using NPOI.SS.UserModel;
using NPOI.XSSF.UserModel;
using System.IO;
 private void ReadPatternExcel(string filePath,int sheetIndex)
        {
            IWorkbook workBook = null;
            ISheet sheet;
            try
            {
                FileInfo fileInfo = new FileInfo(filePath);
                if(fileInfo.Exists)
                {
                    FileStream fs = fileInfo.OpenRead();
                    switch (fileInfo.Extension)
                    {
                        //xls是03,用HSSFWorkbook打开,.xlsx是07或者10用XSSFWorkbook打开
                        case ".xls":
                            workBook = new HSSFWorkbook(fs);
                            break;
                        case ".xlsx":
                            workBook = new XSSFWorkbook(fs);
                            break;
                        default:
                            break;
                    }
                    fs.Close();//关闭文件流
                }

                if(workBook!=null)
                {
                    sheet = workBook.GetSheetAt(sheetIndex);
                    IRow headerRow = sheet.GetRow(0);
                    int colCount = headerRow.LastCellNum;//列数
                    //遍历
                    for(int i=sheet.FirstRowNum;i<=sheet.LastRowNum;i++)
                    {
                        Console.Write("row "+i.ToString()+" ");
                        NPOI.SS.UserModel.IRow row = sheet.GetRow(i);//得到一行
                        for(int j=row.FirstCellNum;j<row.LastCellNum;j++)
                        {
                            string data = row.GetCell(j).ToString();
                            Console.Write(data);
                        }
                        Console.WriteLine();
                    }
                }


            }
            catch(Exception e)
            {
                MessageBox.Show(e.Message.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
            finally
            {
                workBook = null;
                sheet = null;
            }

        }

 

C# Excel使用NPOI

标签:pen   stc   error   引用   finally   运行程序   mode   mod   pre   

原文地址:http://www.cnblogs.com/ike_li/p/6349114.html

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