0

以下は、「人」の「名前」(属性)の値を取得するために使用しているコードです

パラメータ tag="person" およびパラメータ attribute="name"

public static string GetInformationFromXML(string tag,
                                           string attribute,
                                           string filePath)
{
        XDocument doc = XDocument.Load(filePath);
        string info = doc.Element(tag).Attribute(attribute).Value;

        return info;
}

doc.Element(tag) は要素を取得していませんが、ドキュメントを展開すると、タイプが「Element」で名前が「person」の要素があり、読み取られるファイルは参考までに XmlDocument です。

以下は、私が読み込もうとしているファイルのxmlです

<?xml version="1.0"?>
<import>
  <company name1="ABC" name2="" action="create" 
           profile="\Profiles\ABC\" id="C1">
    <address street="industrial" city="london" 
             country="england" id="A1">
      <telecom type="phone" value="4839282992" 
               desc="" default="true" />
      <telecom type="fax" value="3232" desc="" />
    </address>
  </company>
  <person title="Mr." name="Tariq" surname="sheikh" 
          lang="EN" action="create"  profile="Profiles\Tariq" 
          login="tariq" password="123456" default_address="A1">
    <link reference="C1" type="Employee" description="Software developer" />
    <address street="baker street" zip="12443" 
             city="london" country="england" />
    <account bank="Barclays" account="4378734834" />
    <telecom type="email" value="tariq.sheikh@abc.co.in" desc="" />
    <registration type="temporaryID" 
                  value="4623648c-739e-49c8-93fa-41dc7fed53ea" />
  </person>
</import>

私は XDocument が初めてです!

4

1 に答える 1

0

Descendants探している要素が現在の要素 (または のルート) の直接の子ではない場合に使用する必要がありますXDocument

string info = doc.Descendants(tag).First().Attribute(attribute).Value;
于 2013-03-14T07:44:24.340 に答える