欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

OpenXml读取word内容的实例

程序员文章站 2023-12-16 22:41:58
openxml读取word内容注意事项 1、使用openxml读取word内容,word后缀必须是".docx";如果word后缀是".doc"需要转成".docx"后,...

openxml读取word内容注意事项

1、使用openxml读取word内容,word后缀必须是".docx";如果word后缀是".doc"需要转成".docx"后,才可以读取;

2、需要引入相关dll;"windowsbase.dll"、“documentformat.openxml.dll”;

3、word大小>0字节(word大小为0字节会报错);

word内容

OpenXml读取word内容的实例

相关代码

OpenXml读取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内容的实例

以上这篇openxml读取word内容的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

上一篇:

下一篇: