XDocument使用<document>标签(VB.net)</document>读取XML

时间:2013-06-11 12:19:17

标签: xml vb.net xml-parsing linq-to-xml

我有一个XML文件,看起来像这样:

<?xml version="1.0" encoding="utf-8"?>
<Document xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:iso:std:iso:20022:tech:xsd:pain.008.001.02"> 
  <AllThingsInThisDocument> 
    <Headerstuff>
       <Date>2013-06-11</Date>
    </Headerstuff>
    <Reports>
      <Report>
        <Id>01</Id>
        <Name>AA</Name>
      </Report>
      <Report>
        <Id>02</Id>
        <Name>BB</Name>
      </Report>
      <Report>
        <Id>03</Id>
        <Name>CC</Name>
      </Report>
    </Reports>
  </AllThingsInThisDocument> 
</Document> 

我想要做的是循环所有报告,我使用此代码:

Dim xmlr As XDocument = XDocument.Load("MyMxlFile.xml")
For Each report As XElement In xmlr.Descendants("Report")
   'Do some cool stuff
Next

这确实无法奏效。我发现的是它是<Document>标签混淆了它。如果我删除这些标签,它理解我想做的。 有谁知道为什么?

编辑:嗯,我刚刚发现它与<Document>一起工作,在这种情况下,xmlns会混淆它。任何人都知道为什么和/或如何解决这个问题? 它没有给我任何错误,但它在循环中给我null。

1 个答案:

答案 0 :(得分:0)

您的XML文档使用命名空间,因此您必须在LINQ to XML查询中使用它。

首先,使用共享XNamespace方法创建XNamespace.Get()实例:

Dim ns = XNamespace.Get("urn:iso:std:iso:20022:tech:xsd:pain.008.001.02")

然后使用XNamespace + string运算符在您的查询中使用它:

For Each report As XElement In xmlr.Descendants(ns + "Report")
   ' Do some cool stuff '
Next