OpenXml读取word内容的实例
更新时间:2017年12月12日 08:56:12 作者:*飞*
下面小编就为大家分享一篇OpenXml读取word内容的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
OpenXml读取word内容注意事项
1、使用OpenXml读取word内容,word后缀必须是".docx";如果word后缀是".doc"需要转成".docx"后,才可以读取;
2、需要引入相关dll;"WindowsBase.dll"、“DocumentFormat.OpenXml.dll”;
3、word大小>0字节(word大小为0字节会报错);
word内容
相关代码
static void Main(string[] args) { string wordPathStr = @"C:\Users\user\Desktop\新建文件夹 (2)\5.docx"; using (WordprocessingDocument doc = WordprocessingDocument.Open(wordPathStr, true)) { Body body = doc.MainDocumentPart.Document.Body; foreach (var paragraph in body.Elements<Paragraph>()) { Console.WriteLine(paragraph.InnerText); } } Console.ReadLine(); }
控制台显示
以上这篇OpenXml读取word内容的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
Visual C#中如何使用IComparable和IComparer接口
这篇文章主要介绍了C#中使用IComparable和IComparer接口,在本例中,该对象被用作第二个参数被传递给Array.Sort的接受IComparer实例的重载方法,需要的朋友可以参考下2023-04-04c#使用ManagedWifi查看当前Wifi信号并选择wifi的示例
这篇文章主要介绍了c#使用ManagedWifi查看当前Wifi信号并选择wifi的示例,需要的朋友可以参考下2014-04-04
最新评论