覆盖 xml 文件值

发布于 2024-10-16 12:54:29 字数 753 浏览 2 评论 0原文

我有一个像这样的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

唐婉 2024-10-23 12:54:29

您没有向我们展示整个 XML,因此我们无法真正详细地告诉您如何操作。

基本上,如果您的 XML 文件相当小,您可以将其加载到 XmlDocument 中,然后使用 XPath 表达式搜索该 节点,然后替换该节点节点的值。

像这样的东西:

// create your XmlDocument
XmlDocument doc = new XmlDocument();

// load the XML from a file on disk - ADAPT to your situation!
doc.Load(@"C:\test.xml");

// search for a node <count>
XmlNode countNode = doc.SelectSingleNode("/counter/count");

// if node is found
if(countNode != null)
{
    // update the node's .InnerText value (the "contents" of the node)    
    countNode.InnerText = "42";

}

// search for a node <email>
XmlNode emailNode = doc.SelectSingleNode("/counter/email");

// if node is found
if(emailNode != null)
{
    // update the node's .InnerText value (the "contents" of the node)    
    emailNode.InnerText = "[email protected]";
}

// save XmlDocument out to disk again, with the change
doc.Save(@"C:\test_new.xml");

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:

// create your XmlDocument
XmlDocument doc = new XmlDocument();

// load the XML from a file on disk - ADAPT to your situation!
doc.Load(@"C:\test.xml");

// search for a node <count>
XmlNode countNode = doc.SelectSingleNode("/counter/count");

// if node is found
if(countNode != null)
{
    // update the node's .InnerText value (the "contents" of the node)    
    countNode.InnerText = "42";

}

// search for a node <email>
XmlNode emailNode = doc.SelectSingleNode("/counter/email");

// if node is found
if(emailNode != null)
{
    // update the node's .InnerText value (the "contents" of the node)    
    emailNode.InnerText = "[email protected]";
}

// save XmlDocument out to disk again, with the change
doc.Save(@"C:\test_new.xml");
丶情人眼里出诗心の 2024-10-23 12:54:29

您可以使用 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

清风疏影 2024-10-23 12:54:29

使用 Linq to Xml:

XElement x = XElement.Parse("<myDocument><code>0</code></myDocument>");
x.Descendants().Where(n=>n.Name.LocalName.Equals("code")).ToList().ForEach(n=>n.SetValue("1"));

LINQPad 是一个很好的实验工具。

Using Linq to Xml:

XElement x = XElement.Parse("<myDocument><code>0</code></myDocument>");
x.Descendants().Where(n=>n.Name.LocalName.Equals("code")).ToList().ForEach(n=>n.SetValue("1"));

LINQPad is a great tool for experimenting with this.

一百个冬季 2024-10-23 12:54:29

您的直接问题是使用 doc.SelectNodes("count") 而不是 doc.GetElementsByTagName("count")

Your direct problem is the use of doc.SelectNodes("count") instead of doc.GetElementsByTagName("count")

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文