gpt4 book ai didi

c# - 使用 C# 以编程方式更新 xml

转载 作者:数据小太阳 更新时间:2023-10-29 02:15:17 25 4
gpt4 key购买 nike

我尝试在没有 linq 的情况下更新 xml(我使用的是 VC 2.0)。我的 xml 文件格式:


<schedule>
<id>0</id>
<name>yusuf</name>
<status>0</status>
</schedule>

AFTER UPDATE:

<schedule>
<id>0</id>
<name>yusuf</name>
<status>1</status>
</schedule>

但我不知道将 status =0 更新为 status =1

最佳答案

您可以使用 System.Xml.XmlDocument 执行此操作在任何版本的 .NET 中(Silverlight 除外,其中仅存在 XDocument):

    XmlDocument doc = new XmlDocument();
doc.LoadXml(xml); // or doc.Load(path)
doc.SelectSingleNode("/schedule/status").InnerText = "1";
string newXml = doc.OuterXml; // or doc.Save(path);

关于c# - 使用 C# 以编程方式更新 xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/506609/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com