如何从xml c#中读取和打印特定属性

时间:2012-11-07 15:04:49

标签: c# xml unity3d

假设我有xml文件:

<?xml version="1.0" encoding="utf-8"?>
<Test Description="Test XML" VersionFormat="123" ProtectedContentText="(Test test)">
    <Testapp>
        <TestappA>
            <A Id="0" Caption="Test 0" />
            <A Id="1" Caption="Test 1" />
            <A Id="2" Caption="Test 2" />
            <A Id="3" Caption="Test 3">
                <AA>
                    <B Id="4" Caption="Test 4" />
                </AA>
            </A>
        </TestappA>
        <AA>
            <Reason Id="5" Caption="Test 5" />
            <Reason Id="6" Caption="Test 6" />
            <Reason Id="7" Caption="Test 7" />
        </AA>
    </Testapp>
</Test>

我需要从这个xml中读取属性Caption的值而不使用LINQ,因为这个代码的目的是在Unity3D中执行此操作,在花了一整夜才能使这个真实我编写了一个无效的代码。请帮忙!

代码剪辑:

// XML settings
XmlReaderSettings settings = new XmlReaderSettings();
settings.IgnoreWhitespace = true;
settings.IgnoreComments = true;                        

// Loop through the XML to get all text from the right attributes
using (XmlReader reader = XmlReader.Create(sourceFilepathTb.Text, settings))
{
    while (reader.Read())
    {
        if (reader.NodeType == XmlNodeType.Element)
        {
            if (reader.HasAttributes)
            {
                if (reader.GetAttribute("Caption") != null)
                {                                
                    MessageBox.Show(reader.GetAttribute("Caption"));
                }                            
            }
        }
    }
}

2 个答案:

答案 0 :(得分:1)

以下是我处理xml的方法: 首先,我用我的xml加载XmlDocument

XmlDocument x = new XmlDocument();
x.Load("Filename goes here");

然后抓住属性我们有几个选项。如果你只是想要所有的标题并且不关心其他任何标题,你可以这样做:

XmlNodeList xnl = x.GetElementsByTagName("A");
foreach(XmlNode n in xnl)
   MessageBox.Show(n.Attribute["Caption"].Value);

并为每个元素标记重复一次。

在我提供更好的建议之前,我需要了解更多关于你的要求。

答案 1 :(得分:0)

您可以使用XPath获取列表

XmlDocument doc = new XmlDocument();
doc.LoadXml(xmlstring); // Or use doc.Load(filename) to load from file
XmlNodeList attributes = doc.DocumentElement.SelectNodes("//@Caption");
foreach (XmlAttribute attrib in attributes)
{
    Messageox.Show(attrib.Value);
}

我们使用@表示法选择当前文档中具有Caption属性的所有节点。有关xpath的更多信息 - http://www.w3schools.com/xpath/xpath_syntax.asp