不确定我该怎么做。
这是我正在使用的XML:
<configuration>
<tag1>
<interestingstuff>avalue</interestingstuff>
</tag1>
<tag2>
<item_type1 name="foo">
<item_type2 name="bar">
<property>value1</property>
<property>value2</property>
</item_type2>
<item_type2 name="pub">
<property>valueX</property>
<property>valyeY</property>
</item_type2>
<item_type1>
<item_type1 name="foo2">
<item_type2 name="pub">
<property>valueX</property>
</item_type2>
</item_type1>
</tag2>
</configuration>
我正在编写一个传递item_type和item_type2值的函数,并返回该组合的属性值列表。
这就是我所拥有的。它会在注明的位置抛出“未设置为对象实例的对象”异常。
ArrayList properties = new ArrayList();
XDocument config = new XDocument();
config = XDocument.Parse(XML_Text);
foreach (XElement item1 in config.Root.Element("tag2").Nodes())
{
if (item1.Attribute("name").Value.ToString() == passed_item1_value)
{
//this is where it's breaking
foreach (XElement item2 in item1.Elements("item_type2").Nodes())
{
if item2.Attribute("name").Value.ToString() == passed_item2_value)
{
foreach (XElement property in item2.Elements("property").Nodes())
{
properties.Add(property.Value.ToString());
}
break;
}
}
break;
}
}
我知道这没有意义 - 但我不能让它变得有意义。
答案 0 :(得分:3)
我会这样做:
public IEnumerable<string> findValues(string item1, string item2)
{
config = XDocument.Parse(XML_Text)
var res = config.Descendants("item_type1")
.Where(x=>x.Attribute("name").Value == item1)
.Descendants("item_type2")
.Where(x=>x.Attribute("name").Value == item2);
return res.Descendants("property").Select(x=>x.Value);
}
答案 1 :(得分:1)
我想你想要XPath查询,如下所示:
var path = string.Join("/",
"configuration",
"tag2",
string.Format("item_type1[@name='{0}']", passed_item1_value),
string.Format("item_type2[@name='{0}']", passed_item2_value),
"property");
var elements = (IEnumerable)config.XPathEvaluate(path);
var properties = elements.Cast<XElement>().Select(x => x.Value);
不要忘记在此处using System.Xml.XPath;
包含XPathEvaluate
。
答案 2 :(得分:1)
using System.Linq;
using System.Xml.Linq;
IEnumerable<string> GetProperties(XElement xml, string item1, string item2)
{
return xml.Element("tag2")
.Elements("item_type1").Where(x => x.Attribute("name").Value == item1)
.Elements("item_type2").Where(x => x.Attribute("name").Value == item2)
.SelectMany(x => x.Elements("property").Select(p => p.Value));
}
与上述许多解决方案类似,但使用数据的直接路径,并使用SelectMany
将结果转换为单个集合 - 即,如果您对item1和item2有重复项,则可以正常工作。
答案 3 :(得分:0)
如果VB需要类似的帮助
startActivityForResult