如何更改使用C#在一个XML文件中的元素中的数据? [英] How to change the data within elements in a XML file using C#?

查看:141
本文介绍了如何更改使用C#在一个XML文件中的元素中的数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有点新的C#ASP.NET的XML文件。我有以下格式的XML:

I'm kind of new to XML files in C# ASP.NET. I have a XML in the below format:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Installation>
  <ServerIP>192.168.20.110</ServerIP>
  <DB_Name>USTCKT1</DB_Name>
  <Username>jorame</Username>
  <Password>Cru$%e20</Password>
  <Table_PreFix>TCK</Table_PreFix>
</Installation>

我需要在每个单元内更改值。例如,用户点击时,我应该能够与192.168.1.12更换192.168.20.110。

I need to change the values within each element. For example, when an user clicks I should be able to replace 192.168.20.110 with 192.168.1.12.

我怎样才能做到这一点?任何帮助将是非常美联社preciated。

How can I accomplish this? Any help will be really appreciated.

推荐答案

在一般情况下,你可以做到这一点在下面的步骤:

In general, you can do it in the following steps:


  1. 创建一个新的XmlDocument对象并加载内容。该内容可能是一个文件或字符串。

  2. 找到您要修改的元素。如果您的XML文件的结构太复杂,你可以使用的XPath 你找到你想要的。

  3. 应用您修改该元素。

  4. 更新您的XML文件。

  1. Create a new XmlDocument object and load the content. The content might be a file or string.
  2. Find the element that you want to modify. If the structure of your xml file is too complex, you can use xpath you find what you want.
  3. Apply your modification to that element.
  4. Update your xml file.

下面是一个简单的演示:

Here is a simple demo:

    XmlDocument xmlDoc = new XmlDocument();
    xmlDoc.Load("file.xml"); // use LoadXml(string xml) to load xml string
    string path = "/Installation/ServerIP";
    XmlNode node = xmlDoc.SelectSingleNode(path); // use xpath to find a node
    node.InnerText = "192.168.1.12"; // update node, replace the inner text
    xmlDoc.Save("file.xml"); // save updated content   

希望这是有帮助的。

Hope it's helpful.

这篇关于如何更改使用C#在一个XML文件中的元素中的数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆