覆盖 xml 文件值
我有一个像这样的 xml 文件
<count>0</count>
现在我希望覆盖值 0。在 C# 中如何做到这一点?
编辑
<counter>
<count>0</count>
<email>
</email>
</counter>`
这是我的 XML 文件,我希望在电子邮件元素中写入一个值,并更改计数元素的值
XmlDocument doc = new XmlDocument();
doc.Load(COUNTER);
foreach (XmlNode node in doc.SelectNodes("count"))
{
node.InnerText = (count-1).ToString();
}
foreach (XmlNode node in doc.SelectNodes("email"))
{
node.InnerText = (count - 1).ToString();
}
doc.Save(COUNTER); `
当我这样做时,不会将任何值写入文件中
I have a xml file like this
<count>0</count>
Now I wish to overwrite the value 0. How do I do that in c#?
EDIT
<counter>
<count>0</count>
<email>
</email>
</counter>`
This is my XML file I wish to write a value in the email element and also change the value of count element
XmlDocument doc = new XmlDocument();
doc.Load(COUNTER);
foreach (XmlNode node in doc.SelectNodes("count"))
{
node.InnerText = (count-1).ToString();
}
foreach (XmlNode node in doc.SelectNodes("email"))
{
node.InnerText = (count - 1).ToString();
}
doc.Save(COUNTER); `
When I do this no values are written to the file
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您没有向我们展示整个 XML,因此我们无法真正详细地告诉您如何操作。
基本上,如果您的 XML 文件相当小,您可以将其加载到
XmlDocument
中,然后使用 XPath 表达式搜索该
节点,然后替换该节点节点的值。像这样的东西:
You're not showing us the entire XML, so we cannot really tell you in detail how to do it.
Basically, if your XML file is fairly small, you can load it into an
XmlDocument
and then search for that<child>
node using an XPath expression, and then replace that node's value.Something like:
您可以使用 C# XML 类在 C# 中读取该文件,更改值,然后将其写回文件。
您可以使用 ReplaceChild 方法 来实现此目的。
有关详细信息,请阅读 XmlDocument 并查看此 Microsoft 示例
You can read the file in C# using C# XML Classes change the value and then write it back to the file.
You can use ReplaceChild Method for that.
for more info read on XmlDocument and see this Microsoft Example
使用 Linq to Xml:
LINQPad 是一个很好的实验工具。
Using Linq to Xml:
LINQPad is a great tool for experimenting with this.
您的直接问题是使用
doc.SelectNodes("count")
而不是doc.GetElementsByTagName("count")
Your direct problem is the use of
doc.SelectNodes("count")
instead ofdoc.GetElementsByTagName("count")