XML 文档到 IEnumerable<XElement> 并获取值

XML Document to IEnumerable<XElement> and get values

大家好,我正在尝试从我的 xdocument 中更深的容器中获取一些值,但我总是 运行 在 Nullreference 中。

到目前为止,这是我的代码:

                StreamReader xmlStream = new StreamReader(rsp.GetResponseStream());
            string XMLstr = xmlStream.ReadToEnd();
            XDocument xelement = XDocument.Parse(XMLstr);
            xmlStream.Close();


            IEnumerable<XElement> items = xelement.Elements();

            foreach (var item in items )
            {
                Console.WriteLine(item.Element("ItemID").Value.ToString());
            }

这是 XML 我想合作的:

    <GetSellerListResponse xmlns="urn:ebay:apis:eBLBaseComponents">
  <Timestamp>2016-02-26T22:02:38.968Z</Timestamp>
  <Ack>Success</Ack>
  <Version>967</Version>
  <Build>967_CORE_BUNDLED_10708779_R1</Build>
  <PaginationResult>
    <TotalNumberOfPages>14</TotalNumberOfPages>
    <TotalNumberOfEntries>27</TotalNumberOfEntries>
  </PaginationResult>
  <HasMoreItems>true</HasMoreItems>
  <ItemArray>
    <Item>
      <AutoPay>false</AutoPay>
      <BuyerProtection>ItemIneligible</BuyerProtection>
      <Country>US</Country>
      <Currency>USD</Currency>
      <HitCounter>NoHitCounter</HitCounter>
      <ItemID>110043597553</ItemID>
      <ListingDetails>
        <StartTime>2016-02-12T23:35:27.000Z</StartTime>
        <EndTime>2016-02-19T23:35:27.000Z</EndTime>
        <ViewItemURL>http://cgi.sandbox.ebay.com/ws/eBayISAPI.dll?ViewItem&
           item=110043597553&category=41393</ViewItemURL>
        <HasUnansweredQuestions>false</HasUnansweredQuestions>
        <HasPublicMessages>false</HasPublicMessages>
        <BuyItNowAvailable>true</BuyItNowAvailable>
      </ListingDetails>
      <ListingDuration>Days_7</ListingDuration>
      <Location>Santa Cruz, California</Location>
      <PrimaryCategory>
        <CategoryID>41393</CategoryID>
        <CategoryName>Collectibles:Decorative Collectibles:Other</CategoryName>
      </PrimaryCategory>
      <Quantity>1</Quantity>
      <ReviseStatus>
        <ItemRevised>false</ItemRevised>
      </ReviseStatus>
      <SecondaryCategory>
        <CategoryID>95116</CategoryID>
        <CategoryName>Collectibles:Disneyana:Contemporary (1968-Now):Bobblehead Figures</CategoryName>
      </SecondaryCategory>
      <SellingStatus>
        <BidCount>0</BidCount>
        <BidIncrement currencyID="USD">0.5</BidIncrement>
        <ConvertedCurrentPrice currencyID="USD">11.49</ConvertedCurrentPrice>
        <CurrentPrice currencyID="USD">11.49</CurrentPrice>
        <MinimumToBid currencyID="USD">11.49</MinimumToBid>
        <QuantitySold>0</QuantitySold>
        <SecondChanceEligible>false</SecondChanceEligible>
        <ListingStatus>Completed</ListingStatus>
      </SellingStatus>
      <ShipToLocations>US</ShipToLocations>
      <Site>US</Site>
      <Storefront>
        <StoreCategoryID>1</StoreCategoryID>
        <StoreCategory2ID>0</StoreCategory2ID>
        <StoreURL>http://www.stores.sandbox.ebay.com/id=132854966</StoreURL>
      </Storefront>
      <SubTitle>Micky, with the ears!</SubTitle>
      <TimeLeft>PT0S</TimeLeft>
      <Title>Kelly's Kitsch</Title>
      <WatchCount>0</WatchCount>
      <PostalCode>95062</PostalCode>
      <PictureDetails>
        <GalleryURL>http://thumbs.ebaystatic.com/pict/41007087008080_0.jpg</GalleryURL>
        <PhotoDisplay>None</PhotoDisplay>
        <PictureURL>http://thumbs.ebaystatic.com/pict/41007087008080_0.jpg</PictureURL>
      </PictureDetails>
      <ProxyItem>false</ProxyItem>
      <ReturnPolicy>
        <RefundOption>MoneyBack</RefundOption>
        <Refund>Money Back</Refund>
        <ReturnsWithinOption>Days_30</ReturnsWithinOption>
        <ReturnsWithin>30 Days</ReturnsWithin>
        <ReturnsAcceptedOption>ReturnsAccepted</ReturnsAcceptedOption>
        <ReturnsAccepted>Returns Accepted</ReturnsAccepted>
        <Description>Returns accepted only if item is not as described.</Description>
        <ShippingCostPaidByOption>Buyer</ShippingCostPaidByOption>
        <ShippingCostPaidBy>Buyer</ShippingCostPaidBy>
      </ReturnPolicy>
      <PaymentAllowedSite>US</PaymentAllowedSite>
    </Item>
   </ItemArray>
  <ItemsPerPage>2</ItemsPerPage>
  <PageNumber>1</PageNumber>
  <ReturnedItemCountActual>2</ReturnedItemCountActual>
</GetSellerListResponse>

谁能解释一下我遗漏了什么?

谢谢

您在 XDocument 上调用 Elements(),因此 只是 转到 return 根元素。

然后您将对该根元素调用 Element("ItemID") - 请求一个不存在的元素。所以这将 return null,导致你的异常。此外,您忽略了所有元素都在命名空间中这一事实。

看起来您可能真的想要 Item 元素,因此您可以使用:

// Changed the variable name to match what it is...
XDocument doc = XDocument.Parse(XMLstr);
XNamespace ns = "urn:ebay:apis:eBLBaseComponents";
Enumerable<XElement> items = doc.Descendants(ns + "Item");
foreach (var item in items)
{
    // XElement.Value is already a string; no need to call ToString on it
    Console.WriteLine(item.Element(ns + "ItemID").Value);
}

另一种方法是专门查找 ItemArray 元素及其 Item 子元素:

XDocument doc = XDocument.Parse(XMLstr);
XNamespace ns = "urn:ebay:apis:eBLBaseComponents";
Enumerable<XElement> items = doc.Root
                                .Element(ns + "ItemArray")
                                .Elements(ns + "Item");
// Code as before

致所有 VB 找到此内容的用户。首先要注意有一个命名空间,因此考虑这一点的最简单方法之一是添加 Imports 语句。

Imports <xmlns="urn:ebay:apis:eBLBaseComponents">

接下来解析响应。

Dim someXE As XElement = XElement.Parse(XMLstr)

然后 select 所有 ItemID,无论它们位于何处

Dim itemID As IEnumerable(Of XElement) = someXE...<ItemID>

最后逐个查看它们

For Each id As XElement In itemID
    Debug.WriteLine(id.Value) 'from example above 110043597553
Next