从xml字符串中获取xml节点值

时间:2014-09-10 14:46:30

标签: c# xml

我的xml包含xml名称空间。我需要从其xml节点获取值

<personxml:person xmlns:personxml="http://www.your.example.com/xml/person" xmlns:cityxml="http://www.my.example.com/xml/cities">
<personxml:name>Rob</personxml:name>
<personxml:age>37</personxml:age>
<cityxml:homecity>
    <cityxml:name>London</cityxml:name>
    <cityxml:lat>123.000</cityxml:lat>
    <cityxml:long>0.00</cityxml:long>
</cityxml:homecity>

现在我希望将标记<cityxml:lat>的值设为123.00

代码:

string xml = "<personxml:person xmlns:personxml='http://www.your.example.com/xml/person' xmlns:cityxml='http://www.my.example.com/xml/cities'><personxml:name>Rob</personxml:name><personxml:age>37</personxml:age><cityxml:homecity><cityxml:name>London</cityxml:name><cityxml:lat>123.000</cityxml:lat><cityxml:long>0.00</cityxml:long></cityxml:homecity></personxml:person>";
var elem = XElement.Parse(xml);
var value = elem.Element("OTA_personxml/cityxml:homecity").Value;

我遇到错误

The '/' character, hexadecimal value 0x2F, cannot be included in a name.

3 个答案:

答案 0 :(得分:1)

最好使用XmlDocument导航xml。

        XmlDocument doc = new XmlDocument();
        doc.LoadXml(xml);
        XmlNode node = doc.SelectSingleNode("//cityxml:homecity/cityxml:lat");
        string latvalue = null;
        if (node != null) latvalue = node.InnerText;

答案 1 :(得分:1)

您需要使用XNamespace。例如:

XNamespace ns1 = "http://www.your.example.com/xml/person";
XNamespace ns2 = "http://www.my.example.com/xml/cities";

var elem = XElement.Parse(xml);
var value = elem.Element(ns2 + "homecity").Element(ns2 + "name").Value;

//value = "London"

使用包含URI的字符串创建XNamespace,然后将命名空间与本地名称结合使用。

有关详细信息,请参阅here

答案 2 :(得分:1)

我的代码错误是需要一个名称空间来正确解析XML 试试:

 XNamespace ns1 = "http://www.your.example.com/xml/cities";
 string value = elem.Element(ns1 + "homecity").Element(ns1 + "name").Value;

如果可能的话,我仍然会建议使用XDocuments进行解析,但如果你的方式是必须的话,上面的方法很好。