0

我在使用 LINQ to XML 读取我的 xml 文件时遇到问题。我附上了部分 xml 架构。

 <?xml version="1.0" encoding="UTF-8"?>
-<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:mstns="http://tempuri.org/sdnList.xsd" xmlns="http://tempuri.org/sdnList.xsd" elementFormDefault="qualified" targetNamespace="http://tempuri.org/sdnList.xsd" id="sdnList">
  -<xs:element name="sdnList"> 
    -<xs:complexType> 
      -<xs:sequence> 
        -<xs:element name="publshInformation" maxOccurs="1"> 
         -<xs:complexType> 
          -<xs:sequence> 
             <xs:element name="Publish_Date" maxOccurs="1" minOccurs="0" type="xs:string"/> 
            <xs:element name="Record_Count" maxOccurs="1" minOccurs="0" type="xs:int"/> 
           </xs:sequence> 
          </xs:complexType> 
         </xs:element> 
       -<xs:element name="sdnEntry" maxOccurs="unbounded"> 
         -<xs:complexType> 
           -<xs:sequence> 
              <xs:element name="uid" type="xs:int"/> 
              <xs:element name="firstName" minOccurs="0" type="xs:string"/> 
              <xs:element name="lastName" type="xs:string"/> 
              <xs:element name="title" minOccurs="0" type="xs:string"/> 
              <xs:element name="sdnType" type="xs:string"/> 
              <xs:element name="remarks" minOccurs="0" type="xs:string"/> 

              ....CONTINUES FROM HERE

我正在使用的代码如下。

            XDocument doc = XDocument.Load("c:/OFACTemp/sdn.xml");

            var sdnEntry = from item in doc.Root.Descendants("sdnEntry")
                           select new
                           {
                               uid = item.Element("uid").Value,
                               firstName = item.Element("firstName").Value
                           };

            string test = "";
            foreach (var p in sdnEntry)
                test = "Id: " + p.uid + " First Name: " + p.firstName;  

当我通过代码断点时,文档加载正常,我看到了正确的数据。Doc.Root 已填充,但 Descendants 似乎一无所有。然后,一旦到我的 foreach 语句, sdnEntry 就不会产生任何结果。这看起来很简单,但我不知道为什么我不能选择任何东西。我也尝试过使用 Elements 代替 Descendants 并得到相同的结果。最终结果我需要获取 xml 并创建 C# 对象。

此外,一个附带的问题是,如果某些 sdnEntry 有例如名字而其他人没有,将如何处理 sdnEntry?如果 sdnEntry 不存在名字,则 xml 文件中甚至不存在 firstName 元素标记。任何帮助将不胜感激。

这是xml的示例。

<?xml version="1.0" standalone="true"?>
-<sdnList xmlns="http://tempuri.org/sdnList.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
  -<publshInformation> 
     <Publish_Date>05/16/2013</Publish_Date> 
     <Record_Count>5493</Record_Count>
   </publshInformation> 
   -<sdnEntry> 
     <uid>10</uid> 
     <lastName>ABASTECEDORA NAVAL Y INDUSTRIAL, S.A.</lastName> 
     <sdnType>Entity</sdnType> 
    -<programList> 
       <program>CUBA</program> 
     </programList> 
    -<akaList> 
      -<aka> 
         <uid>4</uid> 
         <type>a.k.a.</type> 
         <category>strong</category> 
         <lastName>ANAINSA</lastName> 
       </aka> 
     </akaList> 
    -<addressList> 
      -<address> 
         <uid>7</uid> 
         <country>Panama</country> 
         </address> 
     </addressList>  
   </sdnEntry>
4

3 回答 3

4

您需要考虑默认命名空间,使用 LINQ to XML 您可以通过声明

XNamespace df = "http://tempuri.org/sdnList.xsd";

或者动态地使用

XNamespace df = doc.Root.Name.Namespace;

那么您需要使用该XNamespace对象在查询中构造XNames,例如

       var sdnEntry = from item in doc.Root.Descendants(df + "sdnEntry")
                       select new
                       {
                           uid = (string)item.Element(df + "uid"),
                           firstName = (string)item.Element(df + "firstName")
                       };
于 2013-05-26T09:07:06.450 回答
0

从顶线上删除这部分对我有用。我不知道为什么会这样。但它奏效了。xmlns:mstns="http://tempuri.org/sdnList.xsd"

于 2015-03-05T09:25:10.210 回答
-1

我最终使用 XmlSerializer 来解决我的问题。通过 FTP 下载 xml 文件后,我使用以下代码。然后我可以使用 C# 来填充我的 C# 对象。

FtpWebResponse response = (FtpWebResponse)request.GetResponse();
Stream responseStream = response.GetResponseStream();               
StreamReader sreader = new StreamReader(responseStream);
string xmlString = sreader.ReadToEnd();        
XmlSerializer serializer = new XmlSerializer(typeof(sdnList));
TextReader reader = new StringReader(xmlString); 
sdnList = (sdnList)serializer.Deserialize(reader);
于 2013-06-11T13:06:48.683 回答