C# 得到xml 根节点属性
有上个XML文件<Menu><menuname="d:\我的文档\图片收藏\1.jpg"/><menuname="d:\我的文档\图片收藏\2.jpg"/><menuna...
有上个XML文件
<Menu>
<menu name="d:\我的文档\图片收藏\1.jpg" />
<menu name="d:\我的文档\图片收藏\2.jpg" />
<menu name="d:\我的文档\图片收藏\3.jpg" />
<menu name="d:\我的文档\图片收藏\5.jpg" />
</Menu>
怎样得到如下的输出结果:
d:\我的文档\图片收藏\1.jpg
d:\我的文档\图片收藏\2.jpg
d:\我的文档\图片收藏\3.jpg
d:\我的文档\图片收藏\4.jpg 展开
<Menu>
<menu name="d:\我的文档\图片收藏\1.jpg" />
<menu name="d:\我的文档\图片收藏\2.jpg" />
<menu name="d:\我的文档\图片收藏\3.jpg" />
<menu name="d:\我的文档\图片收藏\5.jpg" />
</Menu>
怎样得到如下的输出结果:
d:\我的文档\图片收藏\1.jpg
d:\我的文档\图片收藏\2.jpg
d:\我的文档\图片收藏\3.jpg
d:\我的文档\图片收藏\4.jpg 展开
4个回答
展开全部
//下边的是具体的代码,不过先要添加using System.Xml;我用的是05没有这个命名空间,还有要注意你的xml文件的路径,我放在了App_Data下边,名字为Baidu.xml,你要进行修改。还有问题可以加我QQ304631331
XmlDocument doc = new XmlDocument();
string XmlFilePath = Server.MapPath("App_Data/Baidu.xml");
doc.Load(XmlFilePath);
string str = "";
XmlNode rootnode = doc.SelectSingleNode("Menu");
foreach (XmlNode node in rootnode.ChildNodes)
{
str += node.Attributes["name"].Value+"<br/>";
}
Response.Write(str);
XmlDocument doc = new XmlDocument();
string XmlFilePath = Server.MapPath("App_Data/Baidu.xml");
doc.Load(XmlFilePath);
string str = "";
XmlNode rootnode = doc.SelectSingleNode("Menu");
foreach (XmlNode node in rootnode.ChildNodes)
{
str += node.Attributes["name"].Value+"<br/>";
}
Response.Write(str);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
System.Xml.XmlDocument xmlDoc = new System.Xml.XmlDocument ( );
xmlDoc.Load ( "XMLFile1.xml" );
System.Xml.XmlNodeList nodes = xmlDoc.GetElementsByTagName ( "menu" );
List<string> names = new List<string> ( );
foreach ( System.Xml.XmlNode node in nodes )
{
names.Add ( node.Attributes [ "name" ].Value );
}
MessageBox.Show ( names [ 0 ] );
xmlDoc.Load ( "XMLFile1.xml" );
System.Xml.XmlNodeList nodes = xmlDoc.GetElementsByTagName ( "menu" );
List<string> names = new List<string> ( );
foreach ( System.Xml.XmlNode node in nodes )
{
names.Add ( node.Attributes [ "name" ].Value );
}
MessageBox.Show ( names [ 0 ] );
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
treeView1.Nodes.Clear();
this.openFileDialog1.ShowDialog();
XmlDocument myxml = new XmlDocument();
myxml.Load(openFileDialog1.FileName);
XmlNode stu = myxml.DocumentElement;
foreach (XmlNode node in stu.ChildNodes)
{
TreeNode studentNode;
studentNode = treeView1.Nodes.Add(node.Name);
foreach (XmlNode nodes in node.ChildNodes)
{
studentNode.Nodes.Add(nodes.InnerText);
}
studentNode 就是TREENODE
详见:http://zhidao.baidu.com/question/100884269.html
this.openFileDialog1.ShowDialog();
XmlDocument myxml = new XmlDocument();
myxml.Load(openFileDialog1.FileName);
XmlNode stu = myxml.DocumentElement;
foreach (XmlNode node in stu.ChildNodes)
{
TreeNode studentNode;
studentNode = treeView1.Nodes.Add(node.Name);
foreach (XmlNode nodes in node.ChildNodes)
{
studentNode.Nodes.Add(nodes.InnerText);
}
studentNode 就是TREENODE
详见:http://zhidao.baidu.com/question/100884269.html
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
XmlDocument xmldoc = new XmlDocument();
xmlDoc.Load(Server.MapPath("") + @"\SP.xml");//打开xml
//获取节点名称
XmlNodeList oneNode = xmldoc.SelectSingleNode("/Menu/menu");
for (int i = 0; i < oneNode.Count; i++)
{
//输出
Response.Write(oneNode[i].Attributes["name"].Value);
}
xmlDoc.Load(Server.MapPath("") + @"\SP.xml");//打开xml
//获取节点名称
XmlNodeList oneNode = xmldoc.SelectSingleNode("/Menu/menu");
for (int i = 0; i < oneNode.Count; i++)
{
//输出
Response.Write(oneNode[i].Attributes["name"].Value);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询