• 大小: 0.02M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: Xml  Excel  c  导出  

资源简介

最有用的实例,同时支持导出xls,xlsx为xml,还可以分表导出哦。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NPOI.SS.UserModel;
using NPOI.HSSF.UserModel;
using System.xml;
using System.IO;

namespace ExcelToxml
{
    class Builder
    {
        public Builder()
        {
        }
        private ISheet sheet;
        private ExportType exportType;
        private int rowNumField;

        public int RowNumField
        {
            set
            {
                rowNumField = value - 1;
                if (rowNumField < 0)
                    rowNumField = 0;
            }
        }
        private int rowNumData;

        public int RowNumData
        {
            set
            {
                rowNumData = value - 1;
                if (rowNumData < 0)
     

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

    .......       144  2015-08-30 01:10  ExcelToxml\app.config

    .......      8729  2015-08-30 16:52  ExcelToxml\Builder.cs

    .......      2020  2015-08-30 16:35  ExcelToxml\Example.cs

    .......      4712  2015-08-30 16:37  ExcelToxml\ExcelToxml.csproj

    .......       227  2015-08-30 01:07  ExcelToxml\ExcelToxml.csproj.user

    .......       861  2015-08-30 17:42  ExcelToxml\ExcelToxml.sln

    .......     17408  2015-08-30 17:52  ExcelToxml\ExcelToxml.suo

    .......       439  2015-08-30 01:09  ExcelToxml\ExportType.cs

    .......     16405  2015-08-30 17:29  ExcelToxml\Form1.cs

    .......     18975  2015-08-30 17:03  ExcelToxml\Form1.Designer.cs

    .......      6024  2015-08-30 17:03  ExcelToxml\Form1.resx

    .......      3049  2015-08-29 22:57  ExcelToxml\IniUtil.cs

    .......       707  2015-08-30 01:40  ExcelToxml\MyTextBox.cs

    .......       505  2015-08-30 03:15  ExcelToxml\Program.cs

    .......      1398  2015-08-29 21:56  ExcelToxml\Properties\AssemblyInfo.cs

    .......      2860  2015-08-30 01:10  ExcelToxml\Properties\Resources.Designer.cs

    .......      5612  2015-08-29 21:56  ExcelToxml\Properties\Resources.resx

    .......      1110  2015-08-30 01:10  ExcelToxml\Properties\Settings.Designer.cs

    .......       249  2015-08-29 21:56  ExcelToxml\Properties\Settings.settings

     目录          0  2016-04-03 13:54  ExcelToxml\Properties

     目录          0  2016-04-03 13:54  ExcelToxml

----------- ---------  ---------- -----  ----

                91434                    21


评论

共有 条评论