• 大小: 0.42M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: Excel  操作  C#  帮助  

资源简介

NPOI操作Excel

资源截图

代码片段和文件信息

using System.Data;
using System.IO;
using System.Text;
using System.Web;
using NPOI.HSSF.UserModel;
using NPOI.SS.UserModel;
using NPOI;

/// 

/// 使用NPOI操作Excel,无需Office COM组件

namespace SourcePlatform.Business
{
    public class ExcelRender
    {
        #region 导出
        /// 
        /// 根据Excel列类型获取列的值
        /// 

        /// Excel列
        /// 
        private static string GetCellValue(ICell cell)
        {
            if (cell == null)
                return string.Empty;
            switch (cell.CellType)
            {
                case CellType.BLANK:
                    return string.Empty;
                case CellType.BOOLEAN:
                    return cell.BooleanCellVa

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       23788  2013-12-07 10:11  ExcelRender.cs
     文件     1281536  2011-11-02 05:32  NPOI.dll

评论

共有 条评论