从c#中的xml字符串读取属性的最佳方法是什么

我有以下xml作为字符串:

<cfdi:Comprobante version="3.0"
                  xsi:schemaLocation="http://www.sat.gob.mx/cfd/3 http://www.sat.gob.mx/sitio_internet/cfd/3/cfdv3.xsd"
                  serie="A"
                  folio="6"
                  fecha="2011-07-22T13:51:42"
                  formaDePago="Pago en una sola exhibición"
                  sello="XlSJYAxauwYbI"
                  noCertificado="00001000000101242210"
                  certificado="YtEQOHw02OGx6E="
                  condicionesDePago="Paguese a mas tardar el 21/08/2011."
                  subTotal="123"
                  Moneda="MXN"
                  total="123"
                  tipoDeComprobante="ingreso">
  <cfdi:Complemento>
    <tfd:TimbreFiscalDigital FechaTimbrado="2011-07-22T13:51:47"
                             UUID="41C8A54F-4956-1BAD-F2CB-48E8343918FD"
                             noCertificadoSAT="00001000000102616613"
                             selloCFD="wrwerewe"
                             version="1.0"
                             xsi:schemaLocation="http://www.sat.gob.mx/TimbreFiscalDigital http://www.sat.gob.mx/sitio_internet/timbrefiscaldigital/TimbreFiscalDigital.xsd"/>
  </cfdi:Complemento>
</cfdi:Comprobante>

我想读取节点tfd内的属性UUID:TimbreFiscalDigital,所以我想知道如何使用c#做到这一点,这可能是愚蠢的,但请理解我是新来的c#。

注意:这个xml是在一个字符串中,而不是在一个文件中(我们的提供者的webservice以字符串形式返回xml,不是我们的错)

注2:我可以使用Linq或任何其他库,这是不可能的

谢谢!!


由于您有名称空间前缀,因此您必须使用XNamespace实例来帮助您引用元素。

// We use these to establish our namespace prefixes
XNamespace cfdi = @"http://www.sat.gob.mx/cfd/3";
XNamespace tfd = @"http://www.sat.gob.mx/TimbreFiscalDigital";

var xdoc = XDocument.Parse(xml);

// Walk down the XML tree to tfd:TimbreFiscalDigital
var elt = xdoc.Element(cfdi + "Comprobante")
              .Element(cfdi + "Complemento")
              .Element(tfd + "TimbreFiscalDigital");
// Alternately
// var elt = xdoc.Descendants(tfd + "TimbreFiscalDigital")
//               .First();

var uuid = (string)elt.Attribute("UUID");

// You can convert attributes and element values to lots of built-in types
// See the Explicit Conversions for XAttribute and XElement on MSDN
var date = (DateTime)elt.Attribute("FechaTimbrado");

进一步阅读:

  • MSDN:XElement运算符
  • MSDN:XAttribute运算符

  • 我将它包装在声明名称空间的根节点中。 我也使用XPath来查询节点。

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Xml.Linq;
    using System.Xml.XPath;
    using System.Xml;
    
    class Program
    {
        static void Main(string[] args)
        {
    
            var doc = @"
    <Root xmlns:xsi='http://someuri' xmlns:cfdi='http://someuri2' xmlns:tfd='http://someuri3'>
    <cfdi:Comprobante version='3.0'
                      xsi:schemaLocation='http://www.sat.gob.mx/cfd/3 http://www.sat.gob.mx/sitio_internet/cfd/3/cfdv3.xsd'
                      serie='A'
                      folio='6'
                      fecha='2011-07-22T13:51:42'
                      formaDePago='Pago en una sola exhibición'
                      sello='XlSJYAxauwYbI'
                      noCertificado='00001000000101242210'
                      certificado='YtEQOHw02OGx6E='
                      condicionesDePago='Paguese a mas tardar el 21/08/2011.'
                      subTotal='123'
                      Moneda='MXN'
                      total='123'
                      tipoDeComprobante='ingreso'>
      <cfdi:Complemento>
        <tfd:TimbreFiscalDigital FechaTimbrado='2011-07-22T13:51:47'
                                 UUID='41C8A54F-4956-1BAD-F2CB-48E8343918FD'
                                 noCertificadoSAT='00001000000102616613'
                                 selloCFD='wrwerewe'
                                 version='1.0'
                                 xsi:schemaLocation='http://www.sat.gob.mx/TimbreFiscalDigital http://www.sat.gob.mx/sitio_internet/timbrefiscaldigital/TimbreFiscalDigital.xsd'/>
      </cfdi:Complemento>
    </cfdi:Comprobante>
    </Root>";
    
            var uuid = XDocument.Parse(doc)
                var uuid = XDocument.Parse(doc)
                .XPathSelectElement("//*[local-name() = 'TimbreFiscalDigital']")
                .Attribute("UUID").Value;
    
            // Work with uuid
    
            Console.Read();
        }
    }
    

    我发现linq的XDocument和相关类特别简单易用:

    string uuid = XDocument.Parse(xmlString)
        .Descendants("TimbreFiscalDigital")
        .Attributes("UUID")
        .First()
        .Value;
    
    链接地址: http://www.djcxy.com/p/55225.html

    上一篇: What is the best way to read an attribute from an xml string in c#

    下一篇: DDMS (Android debug monitor) doesn't list processes on Galaxy S II