我正在尝试使用 Open XML SDK 2.5 在 SharePoint 2013 中生成一个简单的 docx 文件。
我的函数在 SharePoint 库中成功生成了一个 docx 文件,但是当我尝试打开它时,它是空的或损坏的。我已经尝试了很多,并使用了我在这里和网络上找到的不同技术。
protected void generateDoc(string docName)
{
SPWeb spWeb = SPContext.Current.Web;
spWeb.AllowUnsafeUpdates = true;
spWeb.Lists.IncludeRootFolder = true;
SPList docLib = spWeb.Lists["test"];
string fileUrl = Microsoft.SharePoint.Utilities.SPUtility.GetFullUrl(SPContext.Current.Site, "/test/" + docName);
SPSecurity.CodeToRunElevated elevatedSubmit = new SPSecurity.CodeToRunElevated(delegate
{
// MediaStream erstellen
using (MemoryStream ms = new MemoryStream())
{
// Create a Wordprocessing document.
using (WordprocessingDocument package = WordprocessingDocument.Create(ms, WordprocessingDocumentType.Document))
{
// Add a new main document part.
package.AddMainDocumentPart();
// Create the Document DOM.
package.MainDocumentPart.Document = new Document();
package.MainDocumentPart.Document.Append(new Body());
package.MainDocumentPart.Document.Append(
new Paragraph(
new Run(
new Text("TEST"))));
ms.Position = 0;
byte[] content = ms.ToArray();
package.MainDocumentPart.Document.Save();
SPFile file = docLib.RootFolder.Files.Add(fileUrl, ms, true);
file.Update();
}
}
});
SPSecurity.RunWithElevatedPrivileges(elevatedSubmit);
}
如果有人能给我一个提示,那就太好了。
提前致谢!!