我在使用带C#的XML方面有点新鲜。
XML CODE:
<LVL2>
<Tables>
<TBL_ID>1</TBL_ID>
<TBL_Name>test1</TBL_Name>
<MD_ID>1</MD_ID>
<Tables>
<Tables>
<TBL_ID>2</TBL_ID>
<TBL_Name>test2</TBL_Name>
<MD_ID>1</MD_ID>
</Tables>
<Tables>
<TBL_ID>3</TBL_ID>
<TBL_Name>test3</TBL_Name>
<MD_ID>1</MD_ID>
</Tables>
</LVL2>
<LVL2>
<Tables>
<TBL_ID>1</TBL_ID>
<TBL_Name>test4</TBL_Name>
<MD_ID>2</MD_ID>
</Tables>
<Tables>
<TBL_ID>2</TBL_ID>
<TBL_Name>test5</TBL_Name>
<MD_ID>2</MD_ID>
</Tables>
<Tables>
<TBL_ID>3</TBL_ID>
<TBL_Name>test6</TBL_Name>
<MD_ID>2</MD_ID>
</Tables>
</LVL2>
如何将tbl_name
中仅包含md_id = 1
的文本值插入checkedlistbox。这是我目前的代码。
while (xmlReader.Read())
{
switch (xmlReader.NodeType)
{
case XmlNodeType.Element:
elName = xmlReader.Name;
break;
case XmlNodeType.Text:
if (elName == "TBL_Name" && MD_ID == "1")
{
checkedListBox2.Items.Add(xmlReader.Value);
}
break;
}
}
我似乎无法弄清楚如何获取MD_ID = "1"
并输出的文字:
test4
test5
test6
答案 0 :(得分:1)
首先,xml格式不正确。它应该包含一个根节点,并且您错过了<Tables>
标记的关闭。在示例中,如果要选择具有&#34; MD_ID = 1&#34;的元素的表名。 ,结果将是:
TEST1
TEST2
TEST3
如果你想要o / p,那么条件将不等于1。 这是解决方案:
string xmlInput = @"
<root>
<LVL2>
<Tables>
<TBL_ID>1</TBL_ID>
<TBL_Name>test1</TBL_Name>
<MD_ID>1</MD_ID>
</Tables>
<Tables>
<TBL_ID>2</TBL_ID>
<TBL_Name>test2</TBL_Name>
<MD_ID>1</MD_ID>
</Tables>
<Tables>
<TBL_ID>3</TBL_ID>
<TBL_Name>test3</TBL_Name>
<MD_ID>1</MD_ID>
</Tables>
</LVL2>
<LVL2>
<Tables>
<TBL_ID>1</TBL_ID>
<TBL_Name>test4</TBL_Name>
<MD_ID>2</MD_ID>
</Tables>
<Tables>
<TBL_ID>2</TBL_ID>
<TBL_Name>test5</TBL_Name>
<MD_ID>2</MD_ID>
</Tables>
<Tables>
<TBL_ID>3</TBL_ID>
<TBL_Name>test6</TBL_Name>
<MD_ID>2</MD_ID>
</Tables>
</LVL2>
</root>";
XDocument xdoc = XDocument.Parse(xmlInput);
var filteredXML =
xdoc.Descendants("root")
.Elements("LVL2")
.Elements("Tables")
.Where(x => string.Compare(x.Element("MD_ID").Value, "1") == 0)
.Select(x => x.Element("TBL_Name").Value)
.ToList();
Console.WriteLine(filteredXML);
请参阅以下命名空间:
using System.Xml.Linq;