我是 C# 和 XML 数据用法的新手。
我有以下 xml 数据。此 XML 文件似乎没有任何与之关联的样式信息。文档树如下所示。
<response>
<auctions>
<auction>
<id>90436</id>
<user>blabla</user>
<title>title name</title>
<value>10000.00</value>
<period>36</period>
<www/>
</auction>
<auction>
<id>90436</id>
<user>blabla</user>
<title>title name</title>
<value>10000.00</value>
<period>36</period>
<www/>
</auction>
</auctions>
</response>
我使用那个 C# 代码。(这是Form1使用的类)
public IXmlNamespaceResolver ns { get; set; }
public string[] user,id,title,value,period;
public void XmlRead(string url)
{
// Create a new XmlDocument
XPathDocument doc = new XPathDocument(url);
// Create navigator
XPathNavigator navigator = doc.CreateNavigator();
// Get forecast with XPath
XPathNodeIterator nodes = navigator.Select("/response/auctions", ns);
int i = 0;
foreach (XPathNavigator oCurrentPerson in nodes)
{
userName[i] = oCurrentPerson.SelectSingleNode("user").Value;
userId[i] = int.Parse(oCurrentPerson.SelectSingleNode("id").Value);
title[i] = oCurrentPerson.SelectSingleNode("title").Value;
value[i] = oCurrentPerson.SelectSingleNode("value").Value;
period[i] = oCurrentPerson.SelectSingleNode("period").Value;
i++; }
}
我收到一个错误:对象引用未设置为对象的实例。
userName[i] = oCurrentPerson.SelectSingleNode("user").Value;
当我使用单个字符串变量时,例如:userName、userId 没有 [] 一切正常。
提前致谢