替换现有 xml 文件的所有字符串

本文关键字:字符串 xml 替换 文件 | 更新日期: 2023-09-27 18:35:59

我正在尝试用字符串替换现有的.xml扩展名文件的内部文本。

我这样做的原因是:我想从.xml文件中读取图像。但是图像没有从文件的现有文件夹中加载文件.xml。我尝试了很多次来解决这个问题。唯一可能的事情是放置图像文件目标的硬路径。所以后来我开始尝试这个:

  1. 读取.xml文件的内部字符串 - 已解决
  2. 获取 XML 路径的完整父级 - 已解决
  3. 读取 xml 中的文本并导出为字符串 - 已解决
  4. 从字符串中查找"<img src='"存在区域 - 已解决
  5. 将父路径放在现有区域之后 - 已解决
  6. 通过替换所有字符串将字符串保存到现有.xml - 未解决?

这项工作的目的是"显示XML文件中的图像"。所以请有人回答未解决的文章。不要建议我使用像Base64ToImage这样的方法。我只想这样走。希望我能在这里得到答案。

现有 XML: <helpRoot> <body Type="Section1"> <![CDATA[ <img src='Help1.png'/>
<h3 style="color:#2B94EA;font-family:open sans;">Section1</h3></hr>
<p style="color:#484848;font-family:open sans;">Text is shown</p> <h3 style="color:#3399FF;font-family:open sans;"> Image is not showing</h3></hr>
]]></body> <body Type="Section2"> <![CDATA[ <img src='Help2.png'/>
<h3 style="color:#2B94EA;font-family:open sans;">Section2</h3></hr>
<p style="color:#484848;font-family:open sans;">Text is shown</p> <h3 style="color:#3399FF;font-family:open sans;"> Image is not showing</h3></hr>
]]></body> ... </helpRoot>

新的 XML 字符串: <helpRoot> <body Type="Section1"> <![CDATA[ <img src='D:/Project/Image/Help1.png'/>
<h3 style="color:#2B94EA;font-family:open sans;">Section1</h3></hr>
<p style="color:#484848;font-family:open sans;">Text has showing</p> <h3 style="color:#3399FF;font-family:open sans;"> Image is showing</h3></hr>
]]></body> <body Type="Section2"> <![CDATA[ <img src='D:/Project/Image/Help2.png'/>
<h3 style="color:#2B94EA;font-family:open sans;">Section2</h3></hr>
<p style="color:#484848;font-family:open sans;">Text has shown</p> <h3 style="color:#3399FF;font-family:open sans;"> Image is not showing</h3></hr>
]]></body> ... </helpRoot>

替换现有 xml 文件的所有字符串

我会使用XDocumentHTMLAgilityPack

var xml =
@"<base>
    <child><![CDATA[<img src=""/path"" />]]></child>
</base>";
var xDocument = XDocument.Parse(xml);
var xChild = xDocument.Descendants("child").First();
var cData = xChild.Nodes().OfType<XCData>().First();
var htmlDocument = new HtmlDocument();
htmlDocument.LoadHtml(cData.Value);
var imgNode = htmlDocument.DocumentNode.SelectSingleNode("img");
imgNode.Attributes["src"].Value = "/new/path";
using (var writer = new StringWriter())
{
    htmlDocument.Save(writer);
    cData.Value = writer.ToString();
}

xDocument现在包含:

<base>
  <child><![CDATA[<img src="/new/path">]]></child>
</base>