关于asp.net c# 读取xml 某个数据的问题 15
vs没有提示错误,但也没有结果,求大神解救根据m.Emotion得到xml文件中的emotion的meaning的文本节点,通过它在xml文件中找到url然后赋给m.Em...
vs没有提示错误,但也没有结果,求大神解救
根据m.Emotion得到xml文件中的emotion的meaning的文本节点,通过它在xml文件中找到url然后赋给m.Emotionurl。
//从emotion.xml中读取emotionurl的值
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(ConfigurationManager.AppSettings["emotionxml"]);
for (int i = 0; i < xmlDoc.GetElementsByTagName("emotion").Count; i++)
{
if (xmlDoc.GetElementsByTagName("emotion")[i].ChildNodes[0].Value == m.Emotion)
{
m.Emotionurl = xmlDoc.GetElementsByTagName("emotion")[i].ChildNodes[1].Value;
Response.Write(m.Emotionurl);
break;
}
}
emotion.xml文档:
<emotionInfo>
<emotion>
<meaning>happy</meaning>
<url>images/happy.jpg</url>
<id>1</id>
</emotion>
<emotion>
<meaning >sad</meaning>
<url>images/sad.jpg</url>
<id>2</id>
</emotion>
<emotion>
<meaning >angry</meaning>
<url>images/angry.jpg</url>
<id>3</id>
</emotion>
</emotionInfo> 展开
根据m.Emotion得到xml文件中的emotion的meaning的文本节点,通过它在xml文件中找到url然后赋给m.Emotionurl。
//从emotion.xml中读取emotionurl的值
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(ConfigurationManager.AppSettings["emotionxml"]);
for (int i = 0; i < xmlDoc.GetElementsByTagName("emotion").Count; i++)
{
if (xmlDoc.GetElementsByTagName("emotion")[i].ChildNodes[0].Value == m.Emotion)
{
m.Emotionurl = xmlDoc.GetElementsByTagName("emotion")[i].ChildNodes[1].Value;
Response.Write(m.Emotionurl);
break;
}
}
emotion.xml文档:
<emotionInfo>
<emotion>
<meaning>happy</meaning>
<url>images/happy.jpg</url>
<id>1</id>
</emotion>
<emotion>
<meaning >sad</meaning>
<url>images/sad.jpg</url>
<id>2</id>
</emotion>
<emotion>
<meaning >angry</meaning>
<url>images/angry.jpg</url>
<id>3</id>
</emotion>
</emotionInfo> 展开
1个回答
2014-11-18
展开全部
List<string> list=new List<string>();
XmlDocument xmldoc = new XmlDocument();
xmldoc.Load("XMLFile1.xml");
XmlNodeList nodelist = xmldoc.SelectNodes(".//meaning");
foreach (XmlNode item in nodelist)
{
list.Add( item.InnerText);
}
list集合就是节点meaning中的文本值 然后循环赋值给url
XmlDocument xmldoc = new XmlDocument();
xmldoc.Load("XMLFile1.xml");
XmlNodeList nodelist = xmldoc.SelectNodes(".//meaning");
foreach (XmlNode item in nodelist)
{
list.Add( item.InnerText);
}
list集合就是节点meaning中的文本值 然后循环赋值给url
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询