为什么使用NPOI创建后docx文件损坏

时间:2019-03-29 10:33:03

标签: c# docx npoi

我编写了简单的代码,但即使它不起作用。 我收到了MS Word无法打开的文件。

XWPFDocument doc;

using (Stream fileStream = System.IO.File.OpenRead(pathTemplate))
{
    doc = new XWPFDocument(fileStream);
    fileStream.Close();
}


using (FileStream fileStreamNew = System.IO.File.Create(fullPath))
{
    doc.Write(fileStreamNew);
    fileStreamNew.Close();
}

0 个答案:

没有答案