解析 XDocument C# 中的命名空间

发布于 2024-12-15 23:59:44 字数 1009 浏览 0 评论 0原文

我正在从包含几个命名空间的 XML 文件导入一些数据。我正在使用嵌套类来导入不同级别的数据。不幸的是我无法访问内部类中的数据。我知道问题与名称空间有关,但我不知道如何在不修改内部类的情况下解决它们。有谁知道我如何解析 XDocument 中的名称空间。

这是该 XML 的一部分:

<TransXChange xmlns="http://www.transxchange.org.uk/" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:apd="http://www.govtalk.gov.uk/people/AddressAndPersonalDetails" 
xsi:schemaLocation="http://www.transxchange.org.uk/ http://www.transxchange.org.uk/schema/2.1/TransXChange_registration.xsd" 
xml:lang="en" CreationDateTime="2004-06-09T14:20:00-05:00" 
>
    <Operators>
        <LicensedOperator id="O1" >
            <NationalOperatorCode>ABC</NationalOperatorCode>
            <OperatorAddresses>
                <CorrespondenceAddress>
                    <apd:Line>45 City Road</apd:Line>
                </CorrespondenceAddress>
            </OperatorAddresses>
        </LicensedOperator>
    </Operators>
</TransXChange>

I am importing some data from an XML file which contains a couple of namespaces. I am using nested classes to import data in different level. Unfortunately I cannot access the data in inner classes. I know the problem is regarding namespaces but I do not know how I can resolve them without modifying inner classes. Does anybody know how I can resolve namespaces in XDocument.

This is a part of that XML:

<TransXChange xmlns="http://www.transxchange.org.uk/" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:apd="http://www.govtalk.gov.uk/people/AddressAndPersonalDetails" 
xsi:schemaLocation="http://www.transxchange.org.uk/ http://www.transxchange.org.uk/schema/2.1/TransXChange_registration.xsd" 
xml:lang="en" CreationDateTime="2004-06-09T14:20:00-05:00" 
>
    <Operators>
        <LicensedOperator id="O1" >
            <NationalOperatorCode>ABC</NationalOperatorCode>
            <OperatorAddresses>
                <CorrespondenceAddress>
                    <apd:Line>45 City Road</apd:Line>
                </CorrespondenceAddress>
            </OperatorAddresses>
        </LicensedOperator>
    </Operators>
</TransXChange>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情何以堪。 2024-12-22 23:59:44

您必须使用与 XML 中使用的命名空间相匹配的命名空间,对于 Linq to XML,您可以使用 XNamespace 来实现这一点,即:

XDocument doc = XDocument.Load("test.xml");
XNamespace apd = "http://www.govtalk.gov.uk/people/AddressAndPersonalDetails";
var firstHit = doc.Descendants(apd + "Line").First();

You have to use the namespace that matches the one used in your XML, with Linq to XML you can use XNamespace for that i.e.:

XDocument doc = XDocument.Load("test.xml");
XNamespace apd = "http://www.govtalk.gov.uk/people/AddressAndPersonalDetails";
var firstHit = doc.Descendants(apd + "Line").First();
北座城市 2024-12-22 23:59:44

您需要告诉解析器如何引用名称空间:

XmlNamespaceManager nsmgr = new XmlNamespaceManager(xmlElem.OwnerDocument.NameTable);
nsmgr.AddNamespace("apd", "http://[PATH_TO_NAMESPACE_DOC]");

应该可以做到

You need to tell the parser how to reference the namespace:

XmlNamespaceManager nsmgr = new XmlNamespaceManager(xmlElem.OwnerDocument.NameTable);
nsmgr.AddNamespace("apd", "http://[PATH_TO_NAMESPACE_DOC]");

That should do it

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文