zoukankan      html  css  js  c++  java
  • C#利用NPOI在同一个Excel文件中创建多个sheet

    借用NPOI来实现,要在同一Excel文件中创建多个sheet,只需要在同一个workbook中创建多个sheet即可。要注意的是,sheet的名字一定不能重复。下面是实现的代码:

     private void buttonTest_Click(object sender, EventArgs e)
            {
                HSSFWorkbook workBook = new HSSFWorkbook();
                //ISheet sheetA = workBook.CreateSheet("sheetA");
                //ISheet sheetB = workBook.CreateSheet("sheetB");
    
                createSheet(workBook,"SheetA");
                createSheet(workBook,"SheetB");
                createSheet(workBook,"SheetC");
    
                string path = Application.StartupPath + @"	est.xls";
                if (File.Exists(path))
                {
                    File.Delete(path);
                }
                using (FileStream file = new FileStream(path, FileMode.Create))
                {
                    workBook.Write(file);  //创建Excel文件。
                    file.Close();
                }
                MessageBox.Show("OK");
            }
    
            private ISheet createSheet(HSSFWorkbook workBook, string sheetName)
            {
                ISheet sheet = workBook.CreateSheet(sheetName);
                IRow RowHead = sheet.CreateRow(0);
    
                for (int iColumnIndex = 0; iColumnIndex < 10; iColumnIndex++)
                {
                    RowHead.CreateCell(iColumnIndex).SetCellValue(Guid.NewGuid().ToString());
                }
    
                for (int iRowIndex = 0; iRowIndex < 20; iRowIndex++)
                {
                    IRow RowBody = sheet.CreateRow(iRowIndex + 1);
                    for (int iColumnIndex = 0; iColumnIndex < 10; iColumnIndex++)
                    {
                        RowBody.CreateCell(iColumnIndex).SetCellValue(DateTime.Now.Millisecond);
                        sheet.AutoSizeColumn(iColumnIndex);
                    }
                }
                return sheet;
            }
    本博客有部分内容来自网络,如有问题请联系:hebeilijianghua@qq.com,并注明来自博客园。
  • 相关阅读:
    Dubbo框架——整体架构
    ie8不支持的数组方法
    前端面试问题
    Cookie和WebStorage的区别
    flex部局 API
    组合继承介绍
    克隆节点
    键盘事件
    js动态创建元素和删除
    js中的节点属性 和上下级访问关系
  • 原文地址:https://www.cnblogs.com/leebokeyuan/p/14680420.html
Copyright © 2011-2022 走看看