读取XML(从字符串中)并获取一些字段-读取XML时出现问题


82

我有这个XML(存储在名为的C#字符串中myXML

<?xml version="1.0" encoding="utf-16"?>
<myDataz xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <listS>
    <sog>
      <field1>123</field1>
      <field2>a</field2>
      <field3>b</field3>
    </sog>
    <sog>
      <field1>456</field1>
      <field2>c</field2>
      <field3>d</field3>
    </sog>
  </listS>
</myDataz>

我想浏览所有<sog>元素。我想为每个孩子打印那个孩子<field1>

这是我的代码:

XmlDocument xmlDoc = new XmlDocument();
string myXML = "<?xml version=\"1.0\" encoding=\"utf-16\"?><myDataz xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"><listS><sog><field1>123</field1><field2>a</field2><field3>b</field3></sog><sog><field1>456</field1><field2>c</field2><field3>d</field3></sog></listS></myDataz>"
xmlDoc.Load(myXML);
XmlNodeList parentNode = xmlDoc.GetElementsByTagName("listS");
foreach (XmlNode childrenNode in parentNode)
{
    HttpContext.Current.Response.Write(childrenNode.SelectSingleNode("//field1").Value);
}

但似乎我无法将字符串读取为XML?我懂了System.ArgumentException


2
异常怎么说
SLaks 2011年

您可以在.NET 4.0中使用XDocument吗?
JohnD

我在.NET 3.5上!我写了例外!
markzzz 2011年

1
什么是异常消息
SLaks 2011年

.Net 3.5完全支持XLINQ,并且使用起来更加容易。
SLaks 2011年

Answers:


106

您应该使用LoadXml方法,而不是Load:

xmlDoc.LoadXml(myXML); 

加载方法试图从文件加载xml,从字符串加载LoadXml。您还可以使用XPath:

XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(xml);

string xpath = "myDataz/listS/sog";
var nodes = xmlDoc.SelectNodes(xpath);

foreach (XmlNode childrenNode in nodes)
{
    HttpContext.Current.Response.Write(childrenNode.SelectSingleNode("//field1").Value);
} 

太好了。最后,我可以开始使用API​​了:)。
C4d

7
而不是SelectSingleNode("//field1").Value应该是SelectSingleNode("//field1").InnerTextSelectSingleNode("//field1").InnerXml,因为Value将为null,因为它不是属性,但是值在标记之间。
Mathias Conradt

3
要添加到@MathiasConradt中,应该是SelectSingleNode("field1").InnerText如果您不想始终读取field1myDataz / listS / sog的首次出现。
Matthieu M.

19

使用Linq-XML,

XDocument doc = XDocument.Load(file);

var result = from ele in doc.Descendants("sog")
              select new
              {
                 field1 = (string)ele.Element("field1")
              };
 foreach (var t in result)
  {
      HttpContext.Current.Response.Write(t.field1);
  }

或:获取<sog>标签的节点列表。

 XmlDocument xmlDoc = new XmlDocument();
 xmlDoc.Load(myXML);
 XmlNodeList parentNode = xmlDoc.GetElementsByTagName("sog");
 foreach (XmlNode childrenNode in parentNode)
  {
    HttpContext.Current.Response.Write(childrenNode.SelectSingleNode("field1").InnerText);
   }

11

其他答案已有几年历史了(不适用于Windows Phone 8.1),所以我认为我会选择其他选择。我用它来解析Windows Phone应用程序的RSS响应:

XDocument xdoc = new XDocument();
xdoc = XDocument.Parse(xml_string);

3

或使用XmlSerializer类。

XmlSerializer xs = new XmlSerializer(objectType);
obj = xs.Deserialize(new StringReader(yourXmlString));

2

我将System.Xml.Linq.XElement用于此目的。只需检查以下代码即可读取xml的第一个子节点(而不是根节点)的值。

        string textXml = "<xmlroot><firstchild>value of first child</firstchild>........</xmlroot>";
        XElement xmlroot = XElement.Parse(textXml);
        string firstNodeContent = ((System.Xml.Linq.XElement)(xmlroot.FirstNode)).Value;
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.