0

我正在寻找将 openxml 用于服务器端单词自动化项目的替代方法。有谁知道任何其他具有让我操作单词书签和表格的功能的方法?

4

1 回答 1

1

我目前正在为我的公司开发一个单词自动化项目,我正在使用DocX非常简单直接的 API 来使用。我使用的方法是,每当我需要直接使用 XML 时,此 API 在 Paragraph 类中有一个名为“xml”的属性,它使您可以直接访问底层 xml,以便我可以使用它。最好的部分是它不会破坏 xml 并且不会破坏生成的文档。希望这可以帮助!

使用 DocX 的示例代码..

 XNamespace ns = "http://schemas.openxmlformats.org/wordprocessingml/2006/main";
    using(DocX doc = DocX.Load(@"c:\temp\yourdoc.docx"))
    {
         foreach( Paragraph para in doc.Paragraphs )
         {
             if(para.Xml.ToString().Contains("w:Bookmark"))
             {
                 if(para.Xml.Element(ns + "BookmarkStart").Attribute("Name").Value == "yourbookmarkname")
                  {
                          // you got to your bookmark, if you want to change the text..then 
                          para.Xml.Elements(ns + "t").FirstOrDefault().SetValue("Text to replace..");
                  }
             }
         }
    }

专门用于书签的替代 API 是 .. http://simpleooxml.codeplex.com/

如何使用此 API 从书签开始到书签结束删除文本的示例..

 MemoryStream stream = DocumentReader.Copy(string.Format("{0}\\template.docx", TestContext.TestDeploymentDir));
 WordprocessingDocument doc = WordprocessingDocument.Open(stream, true);
 MainDocumentPart mainPart = doc.MainDocumentPart;

 DocumentWriter writer = new DocumentWriter(mainPart);

 //Simply Clears all text between bookmarkstart and end
 writer.PasteText("", "YourBookMarkName");


 //Save to the memory stream, and then to a file
 writer.Save();

 DocumentWriter.StreamToFile(string.Format("{0}\\templatetest.docx", GetOutputFolder()), stream);

将 word 文档从内存流加载到不同的 API 中。

//Loading a document file into memorystream using SimpleOOXML API
MemoryStream stream = DocumentReader.Copy(@"c\template.docx");

//Opening it from the memory stream as OpenXML document
WordprocessingDocument doc = WordprocessingDocument.Open(stream, true);

//Opening it as DocX document for working with DocX Api
DocX document = DocX.Load(stream); 
于 2012-03-22T10:41:50.603 回答