读取XML文件的属性

时间:2013-01-02 19:09:08

标签: c# xml

我有这个XML文件,我可以读取所有节点

<?xml version="1.0" encoding="UTF-8"?>
<cteProc xmlns="http://www.portalfiscal.inf.br/cte" versao="1.04">
    <CTe xmlns="http://www.portalfiscal.inf.br/cte">
        <infCte versao="1.04" ID="CTe3512110414557000014604"></infCte>
    </CTe>
</cteProc> 

我尝试使用C#

阅读此内容
string chavecte;        
string CaminhoDoArquivo = @"C:\Separados\13512004-procCTe.xml";
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(CaminhoDoArquivo); //Carregando o arquivo
chavecte = xmlDoc.SelectSingleNode("infCTe")
                    .Attributes.GetNamedItem("Id").ToString();

但这段代码有问题。

3 个答案:

答案 0 :(得分:4)

如果您想使用Linq To Xml

var xDoc = XDocument.Load(CaminhoDoArquivo);
XNamespace ns = "http://www.portalfiscal.inf.br/cte";
var chavecte = xDoc.Descendants(ns+"infCte").First().Attribute("id").Value;

PS:我假设您的xml无效行为

<infCte versao="1.04" id="CTe3512110414557000014604"></infCte>

答案 1 :(得分:2)

替换

chavecte = xmlDoc.SelectSingleNode("infCTe").Attributes.GetNamedItem("Id").Value;

XmlNamespaceManager nsmgr = new XmlNamespaceManager(xmlDoc.NameTable);
nsmgr.AddNamespace("ab", "http://www.portalfiscal.inf.br/cte");

chavecte = xmlDoc.SelectSingleNode("//ab:infCte", nsmgr)
                 .Attributes.GetNamedItem("Id").Value;

我还注意到infCte没有在xml中正确定义ID属性

答案 2 :(得分:0)

另一种可能的解决方案是:

string CaminhoDoArquivo = @"C:\Separados\13512004-procCTe.xml";
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(CaminhoDoArquivo); //Carregando o arquivo

// Select the node you're interested in
XmlNode node = xmlDoc.SelectSingleNode("/cteProc/CTe/infCte");
// Read the value of the attribute "ID" of that node
string chavecte = node.Attributes["ID"].Value;