使用 XmlDocument 存取 XML 屬性
使用 C# 的 XmlDocument 讀取 XML 屬性可以透過簡單的方法來實現。考慮以下 XML 文件:
<?xml version="1.0" encoding="utf-8" ?> <MyConfiguration xmlns="http://tempuri.org/myOwnSchema.xsd" SuperNumber="1" SuperString="whipcream"> <Other stuff /> </MyConfiguration>
要檢索屬性 SuperNumber 和 SuperString,您可以使用以下程式碼:
// Load the XML document XmlDocument doc = new XmlDocument(); doc.Load("myConfig.xml"); // Get the specified element by its tag name XmlNodeList elemList = doc.GetElementsByTagName("MyConfiguration"); // Iterate through the matching elements for (int i = 0; i < elemList.Count; i++) { // Access the attribute value string attrVal = elemList[i].Attributes["SuperString"].Value; }
此程式碼片段使用 GetElementsByTagName 方法來尋找 MyConfiguration元素。然後,它會迭代結果列表並使用 Attributes 屬性存取“SuperString”屬性。屬性物件的 Value 屬性提供實際的屬性值。
透過利用此方法,您可以使用 C# 中的 XmlDocument 類別輕鬆讀取和處理 XML 屬性。
以上是如何使用C#的XmlDocument存取XML屬性?的詳細內容。更多資訊請關注PHP中文網其他相關文章!