如何获得一个具有以下名称的元素?

时间:2011-02-11 18:44:15

标签: c# .net xml linq linq-to-xml

我需要从这个XML获取CountryName:http://api.hostip.info/?ip=12.215.42.19

响应XML是:

<HostipLookupResultSet version="1.0.1"
  xmlns:gml="http://www.opengis.net/gml"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:noNamespaceSchemaLocation="http://www.hostip.info/api/hostip-1.0.1.xsd">

  <gml:description>This is the Hostip Lookup
  Service</gml:description>
  <gml:name>hostip</gml:name>
  <gml:boundedBy>
    <gml:Null>inapplicable</gml:Null>
  </gml:boundedBy>
  <gml:featureMember>
    <Hostip>
      <ip>12.215.42.19</ip>
      <gml:name>Sugar Grove, IL</gml:name>
      <countryName>UNITED STATES</countryName>
      <countryAbbrev>US</countryAbbrev>
      <!-- Co-ordinates are available as lng,lat -->
      <ipLocation>
        <gml:pointProperty>
          <gml:Point srsName="http://www.opengis.net/gml/srs/epsg.xml#4326">

            <gml:coordinates>-88.4588,41.7696</gml:coordinates>
          </gml:Point>
        </gml:pointProperty>
      </ipLocation>
    </Hostip>
  </gml:featureMember>
</HostipLookupResultSet>

问题是我无法在:方法中包含Descendants,因为它会抛出:

  

XmlException:':'chracater,   十六进制值0x3A,不能   包含在名称中。

由于

4 个答案:

答案 0 :(得分:5)

试试这个

var descendants = from i in XDocument.Load(xml).Descendants("Hostip")
select i.Element("countryName");

<强>更新

下载xml并查找countryName名称的完整代码

string xml;
using(var web = new WebClient())
{
xml = web.DownloadString("http://api.hostip.info/?ip=12.215.42.19");
}
var descendants = from i in XDocument.Parse(xml).Descendants("Hostip")
select i.Element("countryName");

答案 1 :(得分:3)

关于如何在LINQ to XML中应用名称空间的一个小例子:

XElement doc = XElement.Load("test.xml");
XNamespace ns = "http://www.opengis.net/gml";

var firstName = doc.Descendants(ns + "name").First().Value;

答案 2 :(得分:1)

您需要引用gml命名空间;一旦你完成了,你应该能够使用“gml:”右侧显示的标签名称进行导航

<强>更新

我不确定你将这个应用于什么上下文,但这是一个有效的示例控制台应用程序:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;

namespace LinqToXmlSample
{
    class Program
    {
        static void Main(string[] args)
        {
            XElement x = XElement.Load("http://api.hostip.info/?ip=12.215.42.19");
            foreach (XElement hostip in x.Descendants("Hostip"))
            {
                string country = Convert.ToString(hostip.Element("countryName").Value);
                Console.WriteLine(country);
            }
            Console.ReadLine();
        }
    }
}

答案 3 :(得分:0)

var gml = (XNamespace)"http://www.opengis.net/gml";
var doc = XDocument.Load(...) or XDocument.Parse(...);
var name = doc.Descendants(gml + "featureMember").Descendants("countryName").First().Value;

或者你可以蛮力剥夺所有命名空间:

void RemoveNamespace(XDocument xdoc)
{
    foreach (XElement e in xdoc.Root.DescendantsAndSelf())
    {
        if (e.Name.Namespace != XNamespace.None)
        {
            e.Name = XNamespace.None.GetName(e.Name.LocalName);
        }

        if (e.Attributes().Any(a => a.IsNamespaceDeclaration || a.Name.Namespace != XNamespace.None))
        {
            e.ReplaceAttributes(e.Attributes().Select(a => a.IsNamespaceDeclaration ? null : a.Name.Namespace != XNamespace.None ? new XAttribute(XNamespace.None.GetName(a.Name.LocalName), a.Value) : a));
        }
    }
}