16

我必须从以下 XML 中读取 xml 节点“名称”,但我不知道该怎么做。

这是 XML:

<?xml version="1.0" standalone="yes" ?>
  <games>
    <game>
      <name>Google Pacman</name>
      <url>http:\\www.google.de</url>
    </game>
  </games>

代码:

using System.Xml;

namespace SRCDSGUI
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            XmlDocument doc = new XmlDocument();
            doc.Load(Application.StartupPath + @"\games.xml");


            XmlElement root = doc.DocumentElement;
            XmlNodeList nodes = root.SelectNodes("//games");

            foreach (XmlNode node in nodes)
            {
                listBox1.Items.Add(node["game"].InnerText);
            }


        }
    }
}
4

5 回答 5

20

也许试试这个

XmlNodeList nodes = root.SelectNodes("//games/game")
foreach (XmlNode node in nodes)
{
    listBox1.Items.Add(node["name"].InnerText);
}
于 2012-04-05T17:37:25.337 回答
5

或者试试这个:

XmlNodeList nodes = root.GetElementsByTagName("name");
for(int i=0; i<nodes.Count; i++)
{
listBox1.Items.Add(nodes[i].InnerXml);
}
于 2017-12-12T11:30:48.537 回答
3

你真的很接近 - 你找到了游戏节点,你为什么不更进一步,如果它作为游戏下的子节点存在,你为什么不更进一步,只获取名称节点?

在你的每个循环中:

listBox1.Items.Add(node.SelectSingleNode("game/name").InnerText);
于 2012-04-05T17:37:53.840 回答
1

这是一个简单函数的示例,它从 XML 文件中查找并获取两个特定节点并将它们作为字符串数组返回

private static string[] ReadSettings(string settingsFile)
    {
        string[] a = new string[2];
        try
        {
            XmlTextReader xmlReader = new XmlTextReader(settingsFile);
            while (xmlReader.Read())
            {
                switch (xmlReader.Name)
                {
                    case "system":
                        break;
                    case "login":
                        a[0] = xmlReader.ReadString();
                        break;
                    case "password":
                        a[1] = xmlReader.ReadString();
                        break;
                }

            }    
            return a;
        }
        catch (Exception ex)
        {
            return a;
        }
    }
于 2017-07-06T19:40:58.920 回答
0
import xml.etree.ElementTree as ET

tree= ET.parse('name.xml')
root= tree.getroot()

print root[0][0].text
  • 根=游戏
  • 根[0] = 游戏
  • 根[0][0] = 名称
  • 根[0][1] = 网址
  • 使用“.text”获取值的字符串表示
  • 这个例子是使用python
于 2015-07-23T12:02:43.353 回答