首先我要说的是我已经阅读了其他类似的问题,但解决方案(下面复制)对我来说并不适用。
我正在尝试使用.net core和OpenXMl创建一个word文档(docx)(使用DocumentFormat.OpenXml 2.7.2 nuget包)。 看起来微不足道,但不知怎的,它不起作用。当我尝试打开文档时,我收到文件已损坏,截断或格式不正确的错误。
这是我的代码(我在众多教程中找到了它):
using DocumentFormat.OpenXml;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Wordprocessing;
using System.IO;
public Stream GetDocument()
{
var stream = new MemoryStream();
using (WordprocessingDocument doc = WordprocessingDocument.Create(stream, WordprocessingDocumentType.Document, true))
{
MainDocumentPart mainPart = doc.AddMainDocumentPart();
new Document(new Body()).Save(mainPart);
Body body = mainPart.Document.Body;
body.Append(new Paragraph(
new Run(
new Text("Hello World!"))));
mainPart.Document.Save();
}
stream.Seek(0, SeekOrigin.Begin);
return stream;
}
广告保存如下:
public static void Test()
{
DocxWriter writer = new DocxWriter();
string filepath = Directory.GetCurrentDirectory() + @"/test.docx";
var stream = writer.GetDocument();
using (var fileStream = new FileStream(filepath, FileMode.Create, FileAccess.Write))
{
stream.CopyTo(fileStream);
}
stream.Dispose();
}
编辑: 在我提取docx之后,我可以找到一个基本的xml,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<w:document xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
<w:body>
<w:p>
<w:r>
<w:t>Hello World!</w:t>
</w:r>
</w:p>
</w:body>
</w:document>
答案 0 :(得分:2)
所以我的解决方案看起来像这样。我的全局变量很少:
private MemoryStream _Ms;
private WordprocessingDocument _Wpd;
然后创建方法如下所示:
public Doc()
{
_Ms = new MemoryStream();
_Wpd = WordprocessingDocument.Create(_Ms, WordprocessingDocumentType.Document, true);
_Wpd.AddMainDocumentPart();
_Wpd.MainDocumentPart.Document = new DocumentFormat.OpenXml.Wordprocessing.Document();
_Wpd.MainDocumentPart.Document.Body = new Body();
_Wpd.MainDocumentPart.Document.Save();
_Wpd.Package.Flush();
}
保存方法如下所示:
public void SaveToFile(string fullFileName)
{
_Wpd.MainDocumentPart.Document.Save();
_Wpd.Package.Flush();
_Ms.Position = 0;
var buf = new byte[_Ms.Length];
_Ms.Read(buf, 0, buf.Length);
using (FileStream fs = new System.IO.FileStream(fullFileName, System.IO.FileMode.Create))
{
fs.Write(buf, 0, buf.Length);
}
}
它工作正常。试试这个。
答案 1 :(得分:1)
对于其他任何有此问题的人 - 这是open-xml-sdk中的一个错误,在此报告: https://github.com/OfficeDev/Open-XML-SDK/issues/249
看起来_rels / .rels隐藏文件中存在路径问题,并添加了一个额外的反斜杠,导致mac出现问题。
我目前的修复/黑客是使用现有的空文档作为模板。