如何在 XML C# 中更改属性
本文关键字:属性 XML | 更新日期: 2023-09-27 17:57:08
我尝试了几种方法,似乎都不起作用...
您可以通过查看注释的代码行来查看我尝试过的不同方法,但是我能够很好地获得属性,并且newIndex
已正确更新,但是当我更改名为count
的属性时,它不会执行任何操作。
XmlElement reports = (XmlElement)doc.SelectSingleNode("//Reports");
XmlAttribute reportCount = (XmlAttribute)doc.SelectSingleNode("//Reports/@count");
int count = Convert.ToInt32(reportCount.Value);
newIndex = count + 1;
//doc.DocumentElement.SetAttribute("count", "'"" + newIndex.ToString() + "'"");
//reportCount.Value = newIndex.ToString();
reports.SetAttribute("count", newIndex.ToString());
XML 文件
<?xml version="1.0" encoding="utf-8"?>
<Reports count="1"><!--this count should be equal to the last id-->
<Report id="1">
<Workbook>APG0214.xlsx</Workbook>
<Filepath>''fileserver'homeshares'POS Reports</Filepath>
</Report>
<Report id="2">
<Workbook>CBM0214.xlsx</Workbook>
<Filepath>''fileserver'homeshares'POS Reports</Filepath>
</Report>
</Reports>
任何帮助不胜感激!
我不
熟悉旧XML API
但在这种情况下我会使用LINQ to XML
:
var xmlDocument = XDocument.Load("path");
var reports = xmlDocument.Root;
var maxId = reports
.Elements("Report")
.Select(x => (int)x.Attribute("id"))
.Max();
reports.Attribute("count").SetValue(maxId);
xmlDocument.Save("path");
你可能忘记了
.doc。保存("your_path_to_xml_file")
最后;)
只需使用以下方法:
reportCount.Value = newIndex.ToString(CultureInfo.InvariantCulture);
并将 XML 保存回原始文件(或新文件)。