我一直在尝试从.xml文件中读取过去几个小时,几乎没有成功。
我试过了:
XmlReader reader = XmlReader.Create("ChampionList.xml");
reader.ReadToFollowing("Name");
reader.MoveToFirstAttribute();
string nume = reader.Value;
MessageBox.Show(nume);
我的xml看起来像这样:
<?xml version="1.0" encoding="utf-8" ?>
<main>
<Champion>
<Name>Aatrox</Name>
<Counter>Soraka</Counter>
</Champion>
<Champion>
<Name>Ahri</Name>
<Counter>Diana</Counter>
</Champion>
</main>
每当我按下按钮,我想读取名称和计数器。每次换一个新的(第一个按钮 - 第一个冠军等等)。
有人能帮助我吗?此外,对代码的一些解释会很好,如果有很多循环和东西,我还有很多东西需要学习。
答案 0 :(得分:1)
为了测试XML的有效性,我发现将文件的扩展名设置为.XML然后将其放到Internet Explorer窗口中非常容易。 Internet Explorer内置了一个非常好的XML查看器,它会告诉您是否有错误。
(编辑:删除了有关呈现的XML无效的具体建议 - 这似乎是由标记问题引起的。)
答案 1 :(得分:1)
使用ReadElementContentAsString获取元素的内容
XmlReader reader = XmlReader.Create("ChampionList.xml");
reader.ReadToFollowing("Name"); // read until element named Name
string nume = reader.ReadElementContentAsString(); // read its content
MessageBox.Show(nume);
答案 2 :(得分:1)
您可能会发现使用比XmlReader更高级别的界面更容易。例如,您可以在Linq to XML中执行此操作,如下所示:
// read in the entire document
var document = XDocument.Load("ChampionsList.xml");
// parse out the relevant information
// start with all "Champion" nodes
var champs = documents.Descendants("Champion")
// for each one, select name as the value of the child element Name node
// and counter as the value of the child element Counter node
.Select(e => new { name = e.Element("Name").Value, counter = e.Element("Counter").Value });
// now champs is a list of C# objects with properties name and value
foreach (var champ in champs) {
// do something with champ (e. g. MessageBox.Show)
}
答案 3 :(得分:0)
为什么不将它们列为一次列表,按下按钮时只需从列表中取出即可。 XmlTextReader reader = new XmlTextReader(“yourfile.xml”);
string elementName = "";
List<string[]> Champion = new List<string[]>();
string name = "";
while (reader.Read()) // go throw the xml file
{
if (reader.NodeType == XmlNodeType.Element) //get element from xml file
{
elementName = reader.Name;
}
else
{
if ((reader.NodeType == XmlNodeType.Text) && (reader.HasValue)) //fet the value of element
{
switch (elementName) // switch on element name weather Name or Counter
{
case "Name":
name = reader.Value;
break;
case "Counter":
string[] value = new string[] { name, reader.Value }; //store result to list of array of string
Champion.Add(value);
break;
}
}
}
}