6

I want to read a doc file and do some operation and I found a code, but it has asking following "WordprocessingDocument" namespace.Has anyone know from where I can find this assembly.please dont sent me a download link for .dll file because it not good to add third party .dll directly.

4

2 回答 2

2

您可以从http://www.microsoft.com/en-us/download/details.aspx?id=30425下载“Open XML SDK 2.5 for Microsoft Office”

使用这个库去http://msdn.microsoft.com/en-us/library/office/bb448854.aspx

于 2014-01-11T12:21:24.840 回答
0

根据最近的更新和添加任何与Open XML SDK相关的名称空间的方法,请通过 Nuget Package添加名称空间,如System.IO.PackagingDocumentFormat.OpenXml等。您可以在https://www.nuget.org/packages/DocumentFormat.OpenXml/上找到 nuget 包

要安装此 Nuget 包,您可以打开 Nuget 包管理器控制台(工具-> Nuget 包管理器-> Nuget 包管理器控制台)并确保在控制台下拉列表中选择了正确的项目。

运行以下命令。 Install-Package DocumentFormat.OpenXml

或者,您也可以通过 Nuget 包管理器 GUI 安装它,只需右键单击解决方案资源管理器并进入“管理 Nuget 包”即可打开它

于 2018-04-14T04:02:26.820 回答