Ms word 如何将Xml更改保存回原始文档

Ms word 如何将Xml更改保存回原始文档,ms-word,linq-to-xml,openxml,openxml-sdk,Ms Word,Linq To Xml,Openxml,Openxml Sdk,由于供应商的产品出现问题,我需要更新MS Word文档的样式(style.xml)部分 到目前为止,我已经能够提取和更新所需的xml。唯一的问题是,我不知道如何将更改保存回文档 下面的代码工作正常。我通常将xml输出到控制台,以确保它正常运行。最后,我知道我需要执行一些保存操作,但是XDocument.save(/stream/)没有工作 到目前为止,我就在这里 static void FixNormal() { using (WordprocessingDocument doc

由于供应商的产品出现问题,我需要更新MS Word文档的样式(style.xml)部分

到目前为止,我已经能够提取和更新所需的xml。唯一的问题是,我不知道如何将更改保存回文档

下面的代码工作正常。我通常将xml输出到控制台,以确保它正常运行。最后,我知道我需要执行一些保存操作,但是XDocument.save(/stream/)没有工作

到目前为止,我就在这里

static void FixNormal()
{   

    using (WordprocessingDocument doc = WordprocessingDocument.Open(_path, true))
    {
        // Get the Styles part for this document.
        StyleDefinitionsPart stylesPart = doc.MainDocumentPart.StyleDefinitionsPart;


        // If the Styles part does not exist, add it and then add the style.
        if (stylesPart == null)
        {
            Console.WriteLine("No Style Part");

        }
        else
        {
            XDocument stylesDoc;

            using (var reader = XmlNodeReader.Create(stylesPart.GetStream(FileMode.Open, FileAccess.Read)))
            {


                XNamespace w = "http://schemas.openxmlformats.org/wordprocessingml/2006/main";
                Console.WriteLine(stylesPart.Styles.OuterXml);
                // Create the XDocument.
                stylesDoc = XDocument.Load(reader);

                var xStyle = stylesDoc.Descendants(w + "styles").Descendants(w + "style").Where(x => x.Attribute(w + "styleId").Value.Equals("Normal"));
                XElement style = xStyle.Single();



                var q = style.Descendants(w + "qFormat").FirstOrDefault();
                if (q is null)
                {
                    XElement qFormat = new XElement(w + "qFormat");
                    style.Add(qFormat);


                }

                var r = style.Descendants(w + "rsid").FirstOrDefault();
                if (r is null)
                {
                    XElement rsid = new XElement(w + "rsid");
                    XAttribute val = new XAttribute(w + "val", "003C4F1E");
                    rsid.Add(val);

                    style.Add(rsid);                                                      

                }

            }

            //doc.Save(); --- Did not work 

        }

    }

}



我在本页的“保存部分”部分找到了答案

有关解决方案,请参见此代码的结尾。你也会看到我尝试了什么

static void FixNormal()
{   

    using (WordprocessingDocument doc = WordprocessingDocument.Open(_path, true))
    {
        // Get the Styles part for this document.
        StyleDefinitionsPart stylesPart = doc.MainDocumentPart.StyleDefinitionsPart;

        // If the Styles part does not exist, add it and then add the style.
        if (stylesPart == null)
        {
            Console.WriteLine("No Style Part");

        }
        else
        {
            XDocument stylesDoc;

            using (var reader = XmlNodeReader.Create(stylesPart.GetStream(FileMode.Open, FileAccess.Read)))
            {


                XNamespace w = "http://schemas.openxmlformats.org/wordprocessingml/2006/main";

                // Create the XDocument.
                stylesDoc = XDocument.Load(reader);


                var xStyle = stylesDoc.Descendants(w + "styles").Descendants(w + "style").Where(x => x.Attribute(w + "styleId").Value.Equals("Normal"));
                XElement style = xStyle.Single();



                var q = style.Descendants(w + "qFormat").FirstOrDefault();
                if (q is null)
                {
                    XElement qFormat = new XElement(w + "qFormat");
                    style.Add(qFormat);


                }

                var r = style.Descendants(w + "rsid").FirstOrDefault();
                if (r is null)
                {
                    XElement rsid = new XElement(w + "rsid");
                    XAttribute val = new XAttribute(w + "val", "003C4F1E");
                    rsid.Add(val);

                    style.Add(rsid);                                                      

                }

            }

            //doc.Save(); --- Did not work 

            //stylesDoc.Save(@"C:\WinTest\HooRah.xml"); -- I only use this to verify that I've updated everything correctly

            //using (XmlWriter xw = XmlWriter.Create(stylesPart.GetStream(FileMode.Create, FileAccess.Write)))
            //{
            //    stylesDoc.Save(xw);  -- DID NOT WORK EITHER
            //    doc.Save();
            //}

            // THIS WORKED
            stylesDoc.Save(new StreamWriter(stylesPart.GetStream(FileMode.Create, FileAccess.Write)));

        }

    }

}