c# 修改xml节点属性
xml文件如下:<?xmlversion="1.0"encoding="gb2312"?><m><propic="pic/1.jpg"url="my.asp"></pro...
xml文件如下:
<?xml version="1.0" encoding="gb2312"?>
<m>
<pro pic="pic/1.jpg" url="my.asp"></pro>
<pro pic="pic/2.jpg" url="my1.asp"></pro>
<pro pic="pic/3.jpg" url="my2.asp"></pro>
</m>
要怎么更改 pic中 pic和url的值
三行都要更改
if(xe.Attribute["pic"].Value=="pic/1.jpg")
{
xe.SetAttribute("pic","这里是你要修改pic的值");
xe.SetAttribute("url","这里是你要修改url的值");
}
这个“xe.Attribute["pic"].Value"是动态的,有没有办法不固定的方式来改变他的值 展开
<?xml version="1.0" encoding="gb2312"?>
<m>
<pro pic="pic/1.jpg" url="my.asp"></pro>
<pro pic="pic/2.jpg" url="my1.asp"></pro>
<pro pic="pic/3.jpg" url="my2.asp"></pro>
</m>
要怎么更改 pic中 pic和url的值
三行都要更改
if(xe.Attribute["pic"].Value=="pic/1.jpg")
{
xe.SetAttribute("pic","这里是你要修改pic的值");
xe.SetAttribute("url","这里是你要修改url的值");
}
这个“xe.Attribute["pic"].Value"是动态的,有没有办法不固定的方式来改变他的值 展开
4个回答
展开全部
XmlDocument xmlDoc = getXml("test.xml");
XmlNodeList nodes = xmlDoc.SelectNodes("m//pro");
foreach (XmlNode node in nodes)
{
node.Attributes["pic"].Value = "aaa";
node.Attributes["url"].Value = "bbb";
}
xmlDoc.Save("test.xml");
XmlNodeList nodes = xmlDoc.SelectNodes("m//pro");
foreach (XmlNode node in nodes)
{
node.Attributes["pic"].Value = "aaa";
node.Attributes["url"].Value = "bbb";
}
xmlDoc.Save("test.xml");
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
有。很多方法。
这里介绍从配置文件读取。
例如app.config或者Web.config
private static string strConnect = System.Configuration.ConfigurationManager.ConnectionStrings["connStr"].ToString();
配置文件的内容
<connectionStrings>
<add name="connStr" connectionString="pic"/>
</connectionStrings>
你只要
xe.Attribute[connStr"].Value
这里介绍从配置文件读取。
例如app.config或者Web.config
private static string strConnect = System.Configuration.ConfigurationManager.ConnectionStrings["connStr"].ToString();
配置文件的内容
<connectionStrings>
<add name="connStr" connectionString="pic"/>
</connectionStrings>
你只要
xe.Attribute[connStr"].Value
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
XmlDocument xml =new XmlDocument();
xml.Load("这里是你放xml的路径“);
XmlNodeList node = xml.SelectSingleNode("m").Chlidnodes;//获取m的子节点
for( i=0;i<node.Count;i++ )
{
//XmlElement xe = (XmlElement) xn;//将子节点类型转换为XmlElement
如果是不定的值,你就这样,先获取pic的属性值,然后在根据这个属性值去改此属性,注://为注释部分
string pic1 = node[i].Attribute["pic"].Value
Xmlnode xn = xml.SelectSingleNode(@"//pro[@pic='" + pic1 + "']")
XmlElement xe = (XmlElement) xn;//将子节点类型转换为XmlElement
string url1= xe.Attribute["url"];
xe.SetAttribute("pic1","这里是你要修改的值")
xe.SetAttribute("url1","这里是你要修改url的值");
}
//if(xe.Attribute["pic"].Value=="pic/1.jpg")
{
xe.SetAttribute("pic","这里是你要修改pic的值");
xe.SetAttribute("url","这里是你要修改url的值");
}
//下面的2行同上面一样判断一下。。
//if(xe.Attribute["pic"].Value=="pic/2.jpg")
{
}
。
。
}
xml.Load("这里是你放xml的路径“);
XmlNodeList node = xml.SelectSingleNode("m").Chlidnodes;//获取m的子节点
for( i=0;i<node.Count;i++ )
{
//XmlElement xe = (XmlElement) xn;//将子节点类型转换为XmlElement
如果是不定的值,你就这样,先获取pic的属性值,然后在根据这个属性值去改此属性,注://为注释部分
string pic1 = node[i].Attribute["pic"].Value
Xmlnode xn = xml.SelectSingleNode(@"//pro[@pic='" + pic1 + "']")
XmlElement xe = (XmlElement) xn;//将子节点类型转换为XmlElement
string url1= xe.Attribute["url"];
xe.SetAttribute("pic1","这里是你要修改的值")
xe.SetAttribute("url1","这里是你要修改url的值");
}
//if(xe.Attribute["pic"].Value=="pic/1.jpg")
{
xe.SetAttribute("pic","这里是你要修改pic的值");
xe.SetAttribute("url","这里是你要修改url的值");
}
//下面的2行同上面一样判断一下。。
//if(xe.Attribute["pic"].Value=="pic/2.jpg")
{
}
。
。
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
遍历节点。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询