在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → C#中使用Applibrary导入导出包含多个SHEET的Excel

C#中使用Applibrary导入导出包含多个SHEET的Excel

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:2.59M
  • 下载次数:10
  • 浏览次数:45
  • 发布时间:2023-05-29
  • 实例类别:C#语言基础
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 相关标签: Excel sheet 导入导出 EXCE app

实例介绍

【实例简介】C#中使用Applibrary导入导出包含多个SHEET的Excel的类库和案例使用说明。

【实例截图】

from clipboard

【核心代码】

.
├── C#导入导出Excel类库(可操作多个SHEET)
│   ├── AppLibrary
│   │   ├── AppLibrary
│   │   │   ├── AppLibrary.csproj
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── ReadExcel
│   │   │   │   ├── Common
│   │   │   │   │   ├── Assert.cs
│   │   │   │   │   ├── AssertionFailed.cs
│   │   │   │   │   ├── Logger.cs
│   │   │   │   │   └── log
│   │   │   │   │       └── SimpleLogger.cs
│   │   │   │   ├── Reader
│   │   │   │   │   ├── Biff
│   │   │   │   │   │   ├── BaseCompoundFile.cs
│   │   │   │   │   │   ├── BuiltInFormat.cs
│   │   │   │   │   │   ├── BuiltInStyle.cs
│   │   │   │   │   │   ├── ByteData.cs
│   │   │   │   │   │   ├── CellReferenceHelper.cs
│   │   │   │   │   │   ├── DisplayFormat.cs
│   │   │   │   │   │   ├── DoubleHelper.cs
│   │   │   │   │   │   ├── Draw
│   │   │   │   │   │   │   ├── BStoreContainer.cs
│   │   │   │   │   │   │   ├── BlipStoreEntry.cs
│   │   │   │   │   │   │   ├── BlipType.cs
│   │   │   │   │   │   │   ├── Chart.cs
│   │   │   │   │   │   │   ├── ClientAnchor.cs
│   │   │   │   │   │   │   ├── ClientData.cs
│   │   │   │   │   │   │   ├── Dg.cs
│   │   │   │   │   │   │   ├── DgContainer.cs
│   │   │   │   │   │   │   ├── Dgg.cs
│   │   │   │   │   │   │   ├── DggContainer.cs
│   │   │   │   │   │   │   ├── Drawing.cs
│   │   │   │   │   │   │   ├── DrawingGroup.cs
│   │   │   │   │   │   │   ├── EscherAtom.cs
│   │   │   │   │   │   │   ├── EscherContainer.cs
│   │   │   │   │   │   │   ├── EscherRecord.cs
│   │   │   │   │   │   │   ├── EscherRecordData.cs
│   │   │   │   │   │   │   ├── EscherRecordType.cs
│   │   │   │   │   │   │   ├── EscherStream.cs
│   │   │   │   │   │   │   ├── MsoDrawingGroupRecord.cs
│   │   │   │   │   │   │   ├── MsoDrawingRecord.cs
│   │   │   │   │   │   │   ├── ObjRecord.cs
│   │   │   │   │   │   │   ├── Opt.cs
│   │   │   │   │   │   │   ├── SheetDrawingWriter.cs
│   │   │   │   │   │   │   ├── Sp.cs
│   │   │   │   │   │   │   ├── SpContainer.cs
│   │   │   │   │   │   │   ├── Spgr.cs
│   │   │   │   │   │   │   ├── SpgrContainer.cs
│   │   │   │   │   │   │   └── SplitMenuColors.cs
│   │   │   │   │   │   ├── EmptyCell.cs
│   │   │   │   │   │   ├── FontRecord.cs
│   │   │   │   │   │   ├── Fonts.cs
│   │   │   │   │   │   ├── FormatRecord.cs
│   │   │   │   │   │   ├── FormattingRecords.cs
│   │   │   │   │   │   ├── Formula
│   │   │   │   │   │   │   ├── Add.cs
│   │   │   │   │   │   │   ├── Area.cs
│   │   │   │   │   │   │   ├── Area3d.cs
│   │   │   │   │   │   │   ├── ArgumentSeparator.cs
│   │   │   │   │   │   │   ├── Attribute.cs
│   │   │   │   │   │   │   ├── BinaryOperator.cs
│   │   │   │   │   │   │   ├── BooleanValue.cs
│   │   │   │   │   │   │   ├── BuiltInFunction.cs
│   │   │   │   │   │   │   ├── CellReference.cs
│   │   │   │   │   │   │   ├── CellReference3d.cs
│   │   │   │   │   │   │   ├── CloseParentheses.cs
│   │   │   │   │   │   │   ├── Concatenate.cs
│   │   │   │   │   │   │   ├── Divide.cs
│   │   │   │   │   │   │   ├── DoubleValue.cs
│   │   │   │   │   │   │   ├── Equal.cs
│   │   │   │   │   │   │   ├── ExternalSheet.cs
│   │   │   │   │   │   │   ├── FormulaException.cs
│   │   │   │   │   │   │   ├── FormulaParser.cs
│   │   │   │   │   │   │   ├── Function.cs
│   │   │   │   │   │   │   ├── FunctionNames.cs
│   │   │   │   │   │   │   ├── FunctionNames.resx
│   │   │   │   │   │   │   ├── FunctionNames_de.resx
│   │   │   │   │   │   │   ├── FunctionNames_es.resx
│   │   │   │   │   │   │   ├── FunctionNames_fr.resx
│   │   │   │   │   │   │   ├── GreaterEqual.cs
│   │   │   │   │   │   │   ├── GreaterThan.cs
│   │   │   │   │   │   │   ├── IntegerValue.cs
│   │   │   │   │   │   │   ├── LessEqual.cs
│   │   │   │   │   │   │   ├── LessThan.cs
│   │   │   │   │   │   │   ├── MemFunc.cs
│   │   │   │   │   │   │   ├── Minus.cs
│   │   │   │   │   │   │   ├── MissingArg.cs
│   │   │   │   │   │   │   ├── Multiply.cs
│   │   │   │   │   │   │   ├── Name.cs
│   │   │   │   │   │   │   ├── NameRange.cs
│   │   │   │   │   │   │   ├── NotEqual.cs
│   │   │   │   │   │   │   ├── NumberValue.cs
│   │   │   │   │   │   │   ├── OpenParentheses.cs
│   │   │   │   │   │   │   ├── Operand.cs
│   │   │   │   │   │   │   ├── Operator.cs
│   │   │   │   │   │   │   ├── Parenthesis.cs
│   │   │   │   │   │   │   ├── ParseItem.cs
│   │   │   │   │   │   │   ├── ParsedThing.cs
│   │   │   │   │   │   │   ├── Parser.cs
│   │   │   │   │   │   │   ├── Percent.cs
│   │   │   │   │   │   │   ├── Plus.cs
│   │   │   │   │   │   │   ├── Power.cs
│   │   │   │   │   │   │   ├── RangeSeparator.cs
│   │   │   │   │   │   │   ├── SharedFormulaArea.cs
│   │   │   │   │   │   │   ├── SharedFormulaCellReference.cs
│   │   │   │   │   │   │   ├── StringFormulaParser.cs
│   │   │   │   │   │   │   ├── StringFunction.cs
│   │   │   │   │   │   │   ├── StringOperator.cs
│   │   │   │   │   │   │   ├── StringParseItem.cs
│   │   │   │   │   │   │   ├── StringValue.cs
│   │   │   │   │   │   │   ├── Subtract.cs
│   │   │   │   │   │   │   ├── Token.cs
│   │   │   │   │   │   │   ├── TokenFormulaParser.cs
│   │   │   │   │   │   │   ├── UnaryMinus.cs
│   │   │   │   │   │   │   ├── UnaryOperator.cs
│   │   │   │   │   │   │   ├── UnaryPlus.cs
│   │   │   │   │   │   │   ├── VariableArgFunction.cs
│   │   │   │   │   │   │   └── Yylex.cs
│   │   │   │   │   │   ├── FormulaData.cs
│   │   │   │   │   │   ├── HeaderFooter.cs
│   │   │   │   │   │   ├── IndexMapping.cs
│   │   │   │   │   │   ├── IntegerHelper.cs
│   │   │   │   │   │   ├── NumFormatRecordsException.cs
│   │   │   │   │   │   ├── PaletteRecord.cs
│   │   │   │   │   │   ├── RangeImpl.cs
│   │   │   │   │   │   ├── RecordData.cs
│   │   │   │   │   │   ├── SheetRangeImpl.cs
│   │   │   │   │   │   ├── StringHelper.cs
│   │   │   │   │   │   ├── Type.cs
│   │   │   │   │   │   ├── WorkbookMethods.cs
│   │   │   │   │   │   ├── WorkspaceInformationRecord.cs
│   │   │   │   │   │   ├── WritableRecordData.cs
│   │   │   │   │   │   └── XFRecord.cs
│   │   │   │   │   ├── BooleanCell.cs
│   │   │   │   │   ├── BooleanFormulaCell.cs
│   │   │   │   │   ├── Cell.cs
│   │   │   │   │   ├── CellFormat.cs
│   │   │   │   │   ├── CellReferenceHelper.cs
│   │   │   │   │   ├── CellType.cs
│   │   │   │   │   ├── CellView.cs
│   │   │   │   │   ├── DateCell.cs
│   │   │   │   │   ├── DateFormulaCell.cs
│   │   │   │   │   ├── ErrorCell.cs
│   │   │   │   │   ├── ErrorFormulaCell.cs
│   │   │   │   │   ├── Format
│   │   │   │   │   │   ├── Alignment.cs
│   │   │   │   │   │   ├── BoldStyle.cs
│   │   │   │   │   │   ├── Border.cs
│   │   │   │   │   │   ├── BorderLineStyle.cs
│   │   │   │   │   │   ├── CellFormat.cs
│   │   │   │   │   │   ├── Colour.cs
│   │   │   │   │   │   ├── Font.cs
│   │   │   │   │   │   ├── Format.cs
│   │   │   │   │   │   ├── Orientation.cs
│   │   │   │   │   │   ├── PageOrientation.cs
│   │   │   │   │   │   ├── PaperSize.cs
│   │   │   │   │   │   ├── Pattern.cs
│   │   │   │   │   │   ├── ScriptStyle.cs
│   │   │   │   │   │   ├── UnderlineStyle.cs
│   │   │   │   │   │   └── VerticalAlignment.cs
│   │   │   │   │   ├── FormulaCell.cs
│   │   │   │   │   ├── HeaderFooter.cs
│   │   │   │   │   ├── Hyperlink.cs
│   │   │   │   │   ├── JXLException.cs
│   │   │   │   │   ├── LabelCell.cs
│   │   │   │   │   ├── NumberCell.cs
│   │   │   │   │   ├── NumberFormulaCell.cs
│   │   │   │   │   ├── Range.cs
│   │   │   │   │   ├── Read
│   │   │   │   │   │   └── Biff
│   │   │   │   │   │       ├── BOFRecord.cs
│   │   │   │   │   │       ├── BaseSharedFormulaRecord.cs
│   │   │   │   │   │       ├── BiffException.cs
│   │   │   │   │   │       ├── BiffRecordReader.cs
│   │   │   │   │   │       ├── BlankCell.cs
│   │   │   │   │   │       ├── BooleanFormulaRecord.cs
│   │   │   │   │   │       ├── BooleanRecord.cs
│   │   │   │   │   │       ├── BottomMarginRecord.cs
│   │   │   │   │   │       ├── BoundsheetRecord.cs
│   │   │   │   │   │       ├── CellValue.cs
│   │   │   │   │   │       ├── CodepageRecord.cs
│   │   │   │   │   │       ├── ColumnInfoRecord.cs
│   │   │   │   │   │       ├── CompoundFile.cs
│   │   │   │   │   │       ├── DateFormulaRecord.cs
│   │   │   │   │   │       ├── DateRecord.cs
│   │   │   │   │   │       ├── DefaultColumnWidthRecord.cs
│   │   │   │   │   │       ├── DefaultRowHeightRecord.cs
│   │   │   │   │   │       ├── DimensionRecord.cs
│   │   │   │   │   │       ├── ErrorFormulaRecord.cs
│   │   │   │   │   │       ├── ErrorRecord.cs
│   │   │   │   │   │       ├── ExternalSheetRecord.cs
│   │   │   │   │   │       ├── File.cs
│   │   │   │   │   │       ├── FooterRecord.cs
│   │   │   │   │   │       ├── Formula.cs
│   │   │   │   │   │       ├── FormulaRecord.cs
│   │   │   │   │   │       ├── HeaderRecord.cs
│   │   │   │   │   │       ├── HorizontalPageBreaksRecord.cs
│   │   │   │   │   │       ├── HyperlinkRecord.cs
│   │   │   │   │   │       ├── LabelRecord.cs
│   │   │   │   │   │       ├── LabelSSTRecord.cs
│   │   │   │   │   │       ├── LeftMarginRecord.cs
│   │   │   │   │   │       ├── MarginRecord.cs
│   │   │   │   │   │       ├── MergedCellsRecord.cs
│   │   │   │   │   │       ├── MulBlankCell.cs
│   │   │   │   │   │       ├── MulBlankRecord.cs
│   │   │   │   │   │       ├── MulRKRecord.cs
│   │   │   │   │   │       ├── NameRecord.cs
│   │   │   │   │   │       ├── NineteenFourRecord.cs
│   │   │   │   │   │       ├── NumberFormulaRecord.cs
│   │   │   │   │   │       ├── NumberRecord.cs
│   │   │   │   │   │       ├── NumberValue.cs
│   │   │   │   │   │       ├── PLSRecord.cs
│   │   │   │   │   │       ├── PaletteRecord.cs
│   │   │   │   │   │       ├── PaneRecord.cs
│   │   │   │   │   │       ├── PasswordException.cs
│   │   │   │   │   │       ├── PasswordRecord.cs
│   │   │   │   │   │       ├── PrintGridLinesRecord.cs
│   │   │   │   │   │       ├── PrintHeadersRecord.cs
│   │   │   │   │   │       ├── ProtectRecord.cs
│   │   │   │   │   │       ├── RKHelper.cs
│   │   │   │   │   │       ├── RKRecord.cs
│   │   │   │   │   │       ├── RStringRecord.cs
│   │   │   │   │   │       ├── Record.cs
│   │   │   │   │   │       ├── RightMarginRecord.cs
│   │   │   │   │   │       ├── RowRecord.cs
│   │   │   │   │   │       ├── SCLRecord.cs
│   │   │   │   │   │       ├── SSTRecord.cs
│   │   │   │   │   │       ├── SetupRecord.cs
│   │   │   │   │   │       ├── SharedDateFormulaRecord.cs
│   │   │   │   │   │       ├── SharedFormulaRecord.cs
│   │   │   │   │   │       ├── SharedNumberFormulaRecord.cs
│   │   │   │   │   │       ├── SharedStringFormulaRecord.cs
│   │   │   │   │   │       ├── SheetImpl.cs
│   │   │   │   │   │       ├── SheetReader.cs
│   │   │   │   │   │       ├── SortRecord.cs
│   │   │   │   │   │       ├── StringFormulaRecord.cs
│   │   │   │   │   │       ├── SupbookRecord.cs
│   │   │   │   │   │       ├── TopMarginRecord.cs
│   │   │   │   │   │       ├── Window2Record.cs
│   │   │   │   │   │       └── WorkbookParser.cs
│   │   │   │   │   ├── Sheet.cs
│   │   │   │   │   ├── SheetSettings.cs
│   │   │   │   │   ├── StringFormulaCell.cs
│   │   │   │   │   ├── Workbook.cs
│   │   │   │   │   ├── WorkbookSettings.cs
│   │   │   │   │   └── Write
│   │   │   │   │       ├── Border.cs
│   │   │   │   │       ├── BorderLineStyle.cs
│   │   │   │   │       ├── VerticalAlignment.cs
│   │   │   │   │       └── WritableCell.cs
│   │   │   │   └── Units
│   │   │   │       ├── Byte.cs
│   │   │   │       ├── DateTimeFormatInfo.cs
│   │   │   │       ├── File.cs
│   │   │   │       ├── NumberFormatInfo.cs
│   │   │   │       └── ResourceManager.cs
│   │   │   ├── WriteExcel
│   │   │   │   ├── BIFF8.cs
│   │   │   │   ├── Byte
│   │   │   │   │   ├── Bits.cs
│   │   │   │   │   └── Bytes.cs
│   │   │   │   ├── CachedBlockRow.cs
│   │   │   │   ├── Cell.cs
│   │   │   │   ├── CellCoordinate.cs
│   │   │   │   ├── CellTypes.cs
│   │   │   │   ├── Cells.cs
│   │   │   │   ├── CharacterSets.cs
│   │   │   │   ├── Color.cs
│   │   │   │   ├── Colors.cs
│   │   │   │   ├── ColumnInfo.cs
│   │   │   │   ├── EscapementTypes.cs
│   │   │   │   ├── Font.cs
│   │   │   │   ├── FontFamilies.cs
│   │   │   │   ├── FontWeight.cs
│   │   │   │   ├── Fonts.cs
│   │   │   │   ├── Format.cs
│   │   │   │   ├── Formats.cs
│   │   │   │   ├── FormulaRecord.cs
│   │   │   │   ├── HorizontalAlignments.cs
│   │   │   │   ├── IXFTarget.cs
│   │   │   │   ├── LineStyle.cs
│   │   │   │   ├── MSOLE
│   │   │   │   │   ├── Directory.cs
│   │   │   │   │   ├── Header.cs
│   │   │   │   │   ├── MetaData
│   │   │   │   │   │   ├── DocumentSummaryInformationSection.cs
│   │   │   │   │   │   ├── Header.cs
│   │   │   │   │   │   ├── MetadataStream.cs
│   │   │   │   │   │   ├── OriginOperatingSystemVersions.cs
│   │   │   │   │   │   ├── OriginOperatingSystems.cs
│   │   │   │   │   │   ├── Property.cs
│   │   │   │   │   │   ├── PropertyList.cs
│   │   │   │   │   │   ├── Section.cs
│   │   │   │   │   │   ├── SectionList.cs
│   │   │   │   │   │   └── SummaryInformationSection.cs
│   │   │   │   │   ├── Msat.cs
│   │   │   │   │   ├── Ole2Document.cs
│   │   │   │   │   ├── Sat.cs
│   │   │   │   │   ├── Ssat.cs
│   │   │   │   │   ├── Stream.cs
│   │   │   │   │   └── Streams.cs
│   │   │   │   ├── MergeArea.cs
│   │   │   │   ├── Palette.cs
│   │   │   │   ├── RID.cs
│   │   │   │   ├── Record.cs
│   │   │   │   ├── Row.cs
│   │   │   │   ├── RowBlocks.cs
│   │   │   │   ├── Rows.cs
│   │   │   │   ├── SharedStringTable.cs
│   │   │   │   ├── StandardFormats.cs
│   │   │   │   ├── Style.cs
│   │   │   │   ├── Styles.cs
│   │   │   │   ├── TextDirections.cs
│   │   │   │   ├── TextRotations.cs
│   │   │   │   ├── UnderlineTypes.cs
│   │   │   │   ├── UnicodeBytes.cs
│   │   │   │   ├── Util.cs
│   │   │   │   ├── VerticalAlignments.cs
│   │   │   │   ├── Workbook.cs
│   │   │   │   ├── Worksheet.cs
│   │   │   │   ├── WorksheetTypes.cs
│   │   │   │   ├── WorksheetVisibilities.cs
│   │   │   │   ├── Worksheets.cs
│   │   │   │   ├── XF.cs
│   │   │   │   ├── XFs.cs
│   │   │   │   ├── XlsDocument.cs
│   │   │   │   └── XlsText.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │       ├── AppLibrary.dll
│   │   │   │       └── AppLibrary.pdb
│   │   │   └── obj
│   │   │       ├── AppLibrary.csproj.FileListAbsolute.txt
│   │   │       └── Debug
│   │   │           ├── AppLibrary.Biff.Formula.FunctionNames.resources
│   │   │           ├── AppLibrary.ReadExcel.Reader.Biff.Formula.FunctionNames_de.resources
│   │   │           ├── AppLibrary.ReadExcel.Reader.Biff.Formula.FunctionNames_es.resources
│   │   │           ├── AppLibrary.ReadExcel.Reader.Biff.Formula.FunctionNames_fr.resources
│   │   │           ├── AppLibrary.csproj.GenerateResource.Cache
│   │   │           ├── AppLibrary.dll
│   │   │           ├── AppLibrary.pdb
│   │   │           └── TempPE
│   │   ├── AppLibrary.sln
│   │   └── AppLibrary.suo
│   ├── AppLibrary.rar
│   └── C#版excel导出导入工具类库AppLibrary.rar
├── CeRasCall.suo
└── 好例子网_C#导入导出Excel类库(可操作多个SHEET).rar

25 directories, 325 files


实例下载地址

C#中使用Applibrary导入导出包含多个SHEET的Excel

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警