使用XLinq.XElement读取带Namespace(命名空间)的XML

简介

本文主要介绍通过XELemet去读取含有namespaces(xmlns)的XML,这也是偶然间发现这个问题的,一个群里的小伙伴突然问起这个,以此记录一下。

 

背景

 

一个XML文档可能包括来自多个XML词汇表的元素或属性,如果每一个词汇表指派一个命名空间,那么相同名字的元素或属性之间的名称冲突就可以解决。

举一个简单的例子来说,在一个订单的XML文档中需要引用到客户和所购买的产品,customer元素和product元素可能都有一个叫做id的子元素。这时候要引用id元素会造成名称冲突,但是如果将两个id元素放到不同的命名空间中就会解决这个问题。

 

示例代码

 

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Xml.Linq;



namespace XElementReading

{

    class Program

    {

        static string myxml =

           @"<root>

                <one xmlns:a='http://cnkker.com'>

                    <a:oneone xmlns:b='http://taoqi.com.cn'>

                        <b:id>1</b:id>

                        <b:name></b:name>

                    </a:oneone>

                    <a:twotwo xmlns:b='http://www.qq.com'>

                        <b:id>2</b:id>

                        <b:name></b:name>

                    </a:twotwo>

                </one>

              </root>";



        static void Main(string[] args)

        {

            var elem = XElement.Parse(myxml);

            XNamespace nsr = "http://cnkker.com";

            XNamespace nsy = "http://taoqi.com.cn";

            var t = elem.Element("one").Element(nsr + "oneone").Element(nsy + "id").Value;

            Console.WriteLine("Value of id within oneone: {0}", t);    

            Console.ReadLine();

        }

    }

}

 

你可能感兴趣的:(namespace)