如何更改XML文档中属性的值?

时间:2012-10-26 08:00:24

标签: c# xml

我在下面有一个XML文档,在此标记旁边有一个名为<FormData>的标记,它是一个名为 FormId =“d617a5e8-b49b-4640-9734-bc7a2bf05691”<的属性/ p>

我想在C#代码中更改该值?

    XmlDocument xmlDoc = new XmlDocument();
    xmlDoc.Load(MapPath(tempFolderPathAlt + "dvforms" + "\\XmlDataTemplate.xml"));
    //Change value of FormID
    xmlDoc.Save(tempFolderPath + "data.xml");

是我的XML文档:

<?xml version="1.0"?>
<FormData Platform="Android" PlatformVersion="100" Version="966" DataVersion="1" Description="Investec - Res" FormId="d617a5e8-b49b-4640-9734-bc7a2bf05691" FileId="e6202ba2-3658-4d8e-836a-2eb4902d441d" EncryptionVerification="" CreatedBy="Bob" EditedBy="Bob">
<FieldData>
<request_details_export_template Mod="20010101010101" IncludeInPDFExport="Yes"></request_details_export_template>
<request_details_reason_for_valuatio Mod="20010101010101" IncludeInPDFExport="Yes"></request_details_reason_for_valuatio>
</FieldData>
<Photos Mod="20010101010101"/>
<VoiceNotes/>
<Drawings Mod="20010101010101"/>
<FieldNotes/>
</FormData>

6 个答案:

答案 0 :(得分:27)

有几种方法可以做到这一点,包括:

XmlAttribute formId = (XmlAttribute)xmlDoc.SelectSingleNode("//FormData/@FormId");
if (formId != null)
{
    formId.Value = "newValue"; // Set to new value.
}

或者这个:

XmlElement formData = (XmlElement)xmlDoc.SelectSingleNode("//FormData");
if (formData != null)
{
    formData.SetAttribute("FormId", "newValue"); // Set to new value.
}

SelectSingleNode方法使用XPath查找节点;有一个关于XPath here的好教程。使用SetAttribute意味着将创建FormId属性(如果该属性尚不存在),或者如果已存在则更新。

在这种情况下,FormData恰好是文档的根元素,所以你也可以这样做:

xmlDoc.DocumentElement.SetAttribute("FormId", "newValue"); // Set to new value.

最后一个示例仅适用于您要更改的节点恰好是文档中的根元素的地方。

匹配特定的FormId guid(目前尚不清楚这是否是你想要的):

XmlElement formData = (XmlElement)xmlDoc.SelectSingleNode("//FormData[@FormId='d617a5e8-b49b-4640-9734-bc7a2bf05691']");
if (formData != null)
{
    formData.SetAttribute("FormId", "newValue"); // Set to new value.
}

请注意,最后一个示例中的select返回FormData元素而不是FormId属性; []括号中的表达式使我们能够搜索具有特定匹配属性的节点。

答案 1 :(得分:5)

要选择正确的节点,请使用以下XPath //Node[@Attribute='value']

在您的情况下,缺少的代码可能如下所示:

var formId = "d617a5e8-b49b-4640-9734-bc7a2bf05691";
var newId = "[set value here]";

var xpath = String.Format("//FormData[@FormId='{0}']", formId);

XmlNode node = xmlDoc.SelectSingleNode(xpath);

if(node != null)
{
    node.Attributes["FormId"].Value = newId;
}

请参阅XPath reference或查看此tutorial

答案 2 :(得分:1)

或者你可以明确地走树:

xmlDoc.DocumentElement.GetAttribute("FormId").Value = "";

答案 3 :(得分:1)

答案 4 :(得分:1)

XDocument doc = XDocument.Load(m_pFileName);                 
XElement xElemAgent = doc.Descendants("TRAINEE")
.Where(arg => arg.Attribute("TRAINEEID").Value == m_pTraineeID.ToString()).Single(); 
xElemAgent.SetAttributeValue("FIRSTNAME",m_pFirstName);
xElemAgent.SetAttributeValue("LASTNAME", m_pLastName);
xElemAgent.SetAttributeValue("DOB",m_pDOB);
xElemAgent.SetAttributeValue("UNIQUEID",m_pUniqueID);
doc.Save(m_pFileName);

答案 5 :(得分:1)

最好的方法是创建一个可以在任何地方重复使用的功能:

public void ReplaceXMLAttributeValueByIndex(string fullFilePath, string nodeName, int index, string valueToAdd)
    {
        FileInfo fileInfo = new FileInfo(fullFilePath);
        fileInfo.IsReadOnly = false;
        fileInfo.Refresh();

        XmlDocument xmldoc = new XmlDocument();
        xmldoc.Load(fullFilePath);
        try
        {
            XmlNode node = xmldoc.SelectSingleNode(nodeName);
            node.Attributes[index].Value = valueToAdd;
        }
        catch (Exception ex) 
        {
            //add code to see the error
        }
        xmldoc.Save(fullFilePath);
    }