查询XML文件

时间:2013-11-22 11:21:12

标签: c# .net xml

我应该在我的C#应用​​程序中解析XML文件。

这是我的XML文件的示例

<?xml version="1.0" encoding="utf-8" ?>
  <tokens>
    <token id="1" >
      <id>1</id>
      <nome>"Pippo"</nome>
      <numeroSillabe>"2"</numeroSillabe>
      <sillabaIniziale>"Pip"</sillabaIniziale>
    </token>

    <token id="2">
        <id>2</id>
        <nome>Pluto</nome>
        <numeroSillabe>2</numeroSillabe>
        <sillabaIniziale>Plu</sillabaIniziale>
      </token>

    <token id="3">
        <id>3</id>
        <nome>Palla</nome>
        <numeroSillabe>2</numeroSillabe>
        <sillabaIniziale>Pa</sillabaIniziale>
      </token>
</tokens>

为了阅读此文件,我使用此代码

XmlDocument document = new XMLDocument()
document.Load("Content\\Token.xml");

// arrivo al nodo
//XmlNode node = document.DocumentElement.SelectSingleNode("/tokens/token");
//dichiaro la mappa per i token
Dictionary<string, Token> mappa = new Dictionary<string, Token>();
foreach (XmlNode node in document.DocumentElement.ChildNodes)
{
    //creo l'oggetto Token e lo popolo con i risultati del parse
    Token token = new Token();
    //compilo il campo ID
    token.setId((node["id"].InnerText).Replace("\"", ""));
    //compilo il nome
    token.setNome((node["nome"].InnerText).Replace("\"", ""));
    //compilo l numero sillabe
    token.setNumeroSillabe((node["numeroSillabe"].InnerText).Replace("\"", "")); 
    //compilo la sillaba iniziale
    token.setSillabaIniziale(node["sillabaIniziale"].InnerText);
    //aggiungo all array il token
    mappa.Add(token.getId(), token);
}

有效。

现在我想从XML文档中搜索元素,例如SELECT * FROM DOCUMENT_XML WHERE numeroSilabe=2.

我该如何执行此任务?

4 个答案:

答案 0 :(得分:1)

如果您需要浏览XML文件,就像在代码示例中一样,您可以使用以下内容:

var mappa = document.SelectNodes("/tokens/token[numeroSillabe=2]") // Filter
    .OfType<XmlElement>()
    .ToDictionary(
        t => t.GetAttribute("id"),
        t => new
        {
            Id              = t.GetAttribute("id"),
            Nome            = t.SelectSingleNode("nome"           ).InnerText,
            NumeroSillabe   = t.SelectSingleNode("numeroSillabe"  ).InnerText,
            SillabaIniziale = t.SelectSingleNode("sillabaIniziale").InnerText
        });

答案 1 :(得分:0)

List<Token> tokens = mappa.Select(x=>x.Values.Where(y=>y.getNumeroSillabe()==2)).ToList();

我认为你的令牌类有一个方法getNumeroSillabe(),比如getId(),它返回NumeroSillabe的值。

顺便说一句,我建议您使用自动属性,而不是将类的foreach变量定义为getter和setter。当然,如果您在此方法中没有任何逻辑而不是设置和获取变量的值,而不检查任何内容或进行任何计算等,那将是合适的。

在你的情况下:

//我不知道,哪个是你的类的访问修饰符,我想这是公开的。

public class Token
{
    public string Id              { get; set;}
    public string Nome            { get; set;}
    public string NumeroSillabe   { get; set;}
    public string SillabeIniziale { get; set;}

    // here goes the methods of your class, if there are any 
}

进行此更改后,上述linq查询的代码将更改为以下内容:

List<Token> tokens = mappa.Select(x=>x.Values.Where(y=>y.NumeroSillabe==2)).ToList();

此外,您的代码更改如下:

token.Nome = node["nome"].InnerText.Replace("\"", "");

其他三项任务也是如此。

如需进一步阅读重新定义自动实施的属性,请查看以下链接:

http://msdn.microsoft.com/en-us/library/vstudio/bb384054.aspx

答案 2 :(得分:0)

使用它:

var mappa =  document.SelectNodes("//token[numeroSillabe=2]");

答案 3 :(得分:0)

尝试下面的代码来获取没有任何循环的过滤节点:

var document = new XmlDocument();
document.Load("Content\\Token.xml");
var filteredNodes = document.SelectNodes("tokens/token/numeroSillabe=2");