.Net开源Excel、Word操作组件-NPOI、EPPlus、DocX

一、NPOI

简介:
NPOI is the .NET version of POI Java project. With NPOI, you can read/write Office 2003/2007 files very easily.

官网地址:
https://github.com/tonyqus/npoi
http://npoi.codeplex.com/

二、EPPlus

简介:
EPPlus is a .net library that reads and writes Excel 2007/2010 files using the Open Office Xml format (xlsx).
官网地址:
http://epplus.codeplex.com/

三、DocX

简介:
DocX is a .NET library that allows developers to manipulate Word 2007/2010/2013 files, in an easy and intuitive manor. DocX is fast, lightweight and best of all it does not require Microsoft Word or Office to be installed.
官网地址:
http://docx.codeplex.com/

时间: 2024-08-28 04:58:15

.Net开源Excel、Word操作组件-NPOI、EPPlus、DocX的相关文章

.Net开源Excel、Word操作组件-NPOI、EPPlus、DocX[转]

link: http://www.cnblogs.com/jacktang/p/4493760.html 一.NPOI 简介:NPOI is the .NET version of POI Java project. With NPOI, you can read/write Office 2003/2007 files very easily. 官网地址:https://github.com/tonyqus/npoihttp://npoi.codeplex.com/ 二.EPPlus 简介:E

开源word操作组件DocX的记录

开源word操作组件DocX的记录 使用开源word操作组件DocX的记录 1.DocX简介 1.1 简介 DocX是一个在不需要安装word的情况下对word进行操作的开源轻量级.net组件,是由爱尔兰的一个叫Cathal Coffey的博士生开发出来的.DocX使得操作word非常轻便,有利于减轻开发负担,提升程序效率.DocX在Codeplex和Github上都有开源. 1.2 获取与安装 可以在http://docx.codeplex.com/releases下载获取,也可以直接利用Nu

老牌开源Office操作组件NPOI现已支持.NET Core

昨天在微信群里听到老牌Excel开发利器NPOI的作者瞿总说4.6.1版本的NPOI已经支持.NET Standard 2.0了,这也就意味着你可以在.NET Core中使用NPOI了. 作者:依乐祝 原文地址 :https://www.cnblogs.com/yilezhu/p/10269281.html 写在前面 曾经的.NET Framework时代就很喜欢使用这个组件来对Excel的进行操作,可是随着.NET Core时代的到来以及NPOI不支持.NET Core所以就找到了园子里的大神

EPPLUS之外的选择,EXCEL的操作(NPOI,POI(java))

NPOI 编辑 NPOI 是 POI 项目的 .NET 版本.POI是一个开源的Java读写Excel.WORD等微软OLE2组件文档的项目. 中文名 NPOI 优    势 传统操作Excel遇到的问题 构    成 读写OLE2文档 基    于 LittleEndian的字节读写 历史版本 NPOI 2.1.1      2014/01/07 目录 1 简介 2 优势 3 构成 4 项目近况: 5 历史版本: 6 开发团队 7 系统要求 8 许可 简介 编辑 使用 NPOI 你就可以在没有

DocX开源WORD操作组件的学习系列二

创建目录 效果图 static void AddToc() { Console.WriteLine("\tAddToc()"); using (var document = DocX.Create(@"docs\Toc2.docx")) { document.InsertTableOfContents("1 目录", TableOfContentsSwitches.O | TableOfContentsSwitches.U | TableOfCo

DocX开源WORD操作组件的学习系列三

替换文本 private static void ReplaceText() { Console.WriteLine("ReplaceText()"); File.Copy(@"docs\Lists.docx", @"docs\ReplaceText.docx", true); using (var document = DocX.Load(@"docs\ReplaceText.docx")) { //全局替换 documen

DocX开源WORD操作组件的学习系列四

插入表格 static void LargeTable() { Console.WriteLine("\tLargeTable()"); var _directoryWithFiles = "docs\\"; using (var output = File.Open(_directoryWithFiles + "LargeTable.docx", FileMode.Create)) { using (var doc = DocX.Create(

NPOI office 组件资料汇总 (excel, word)

POI 是一套用Java写成的库,能够帮助开发者在没有安装微软Office的情况下读写Office 的文件,支持的文件格式包括xls, doc, ppt等. NPOI 是POI的.net 版本. 最新版本是  杨晓东 Savorboard  移植的 .net core 2.0 版本.具体使用方法与原有版本一致 原作者是 瞿杰  相对于NPOI,还有EPPlus 和 DocX (作者Cathal Coffery) 参考 瞿杰 自己的blogs NPOI及相关.NET开源项目近况 (2014-03-

c# ASP.Net 使用开源免费类库操作Excel

主要找到以下类库: MyXls(http://sourceforge.net/projects/myxls/) Koogra(http://sourceforge.net/projects/koogra/) ExcelLibrary(http://code.google.com/p/excellibrary/) ExcelPackage(http://excelpackage.codeplex.com/) EPPlus(http://epplus.codeplex.com/) LinqToExc