读:
//打开某文件(假设web.config在根目录中)
字符串文件名=Server.MapPath("/") + @"WebApplication1web.config";
XmlDocument xmldoc= new XmlDocument();
xmldoc.Load(文件名);
//获得财富列表
XmlNodeList topM=xmldoc.DocumentElement.ChildNodes;
foreach(topM 中的 XmlElement 元素)
{
if(element.Name.ToLower()=="appsettings")
{
//得到该节点的子节点
XmlNodeList nodelist=element.ChildNodes;
if ( 节点列表.Count >0 )
{
//DropDownList1.Items.Clear();
foreach(XmlElement el in nodelist)//读取元素值
{
//DropDownList1.Items.Add(el.Attributes["key"].InnerXml);
//this.TextBox2.Text=el.Attributes["key"].InnerText;
this.TextBox2.Text=el.Attributes["key"].Value;
this.Label1.Text=el.Attributes["value"].Value;
//同样这里可以修改元素值,在后面保存。
// el.Attributes["value"].Value=this.TextBox2.Text;
}
}
}
}
xmldoc.Save(文件名);
在某节点下增加一个元素,并设置值:
if(element.Name.ToLower()=="appsettings")
{
XmlElement elem = xmldoc.CreateElement("add");
元素.AppendChild(elem);
elem.InnerText="ltp";
xmldoc.Save(文件名);
}
效果:
<应用程序设置>
<add key="密码" value="admin" />
<添加>ltp</添加>
</应用程序设置>
在某节点下增加一个元素,并增加两个属性:
if(element.Name.ToLower()=="appsettings")
{
XmlElement elem = xmldoc.CreateElement("add");
元素.AppendChild(elem);
XmlAttribute xa=xmldoc.CreateAttribute("key");
xa.Value="ltp";
XmlAttribute xa2=xmldoc.CreateAttribute("值");
xa2.Value =“第一个”;
elem.SetAttributeNode(xa);
elem.SetAttributeNode(xa2);
xmldoc.Save(文件名);
}
效果:
<应用程序设置>
<add key="密码" value="admin" />
<添加键=“ltp”值=“第一个”/>
</应用程序设置>
//添加空元素:
XmlNode 节点=doc.CreateElement(groupname);
节点.InnerText =“”;
doc.LastChild.AppendChild(节点);
doc.保存(xml文件);
删除一个节点元素
字符串项目名称=this.listBox1.SelectedItem.ToString();
this.listBox1.Items.Remove(this.listBox1.SelectedItem);
//开始删除xml文件
XmlDocument doc=new XmlDocument();
doc.Load(xmlfile);
XmlNodeList topM=doc.DocumentElement.ChildNodes;
foreach(topM 中的 XmlElement 元素)
{
if(element.Name==this.comboBox1.Text)
{
//得到该节点的子节点
XmlNodeList nodelist=element.ChildNodes;
foreach(XmlElement el in nodelist)//读取元素值
{
if(el.Attributes["key"].Value==itemname)
{
元素.RemoveChild(el);
}
}//循环元素
}//得到组
}//循环组
doc.Save(xmlfile); //一定要保存一下,否则失效
//筛选数据
私人无效Reader_Xml(字符串pathFlie)
{
XmlDocument Xmldoc=new XmlDocument();
Xmldoc.Load(pathFlie);
XmlNodeList Record1=Xmldoc.DocumentElement.SelectNodes(Code[@id='1'])
整数f=0;
foreach(Record1 中的 XmlNode xnode)
{
}
} /**//*读取xml数据两种xml方式*/
<啊啊>
<bb>某事</bb>
<cc>某事</cc>
</aaa>
<啊啊>
<添加键=“123”值=“321”/>
</aaa>
/**//*第一种方法*/
DS.ReadXml("您的 xml 文件名");
Container.DataItem("bb");
Container.DataItem("cc");
DS.ReadXmlSchema("您的 xml 文件名");
/**//*第二种方法*/
<啊啊>
<添加键=“123”值=“321”/>
</aaa>
如果我要找到123然后取到321应该怎么写呢?
使用 System.XML;
XmlDataDocument xmlDoc = new System.Xml.XmlDataDocument();
xmlDoc.Load(@"c:Config.xml");
XmlElement elem = xmlDoc.GetElementById("add");
字符串 str = elem.Attributes["value"].Value
/**//*第三种方法:SelectSingleNode读取两种格式的xml *---/
-------------------------------------------------- ------------------
<?xml 版本=“1.0”编码=“utf-8”?>
<配置>
<应用程序设置>
<ConnectionString>数据源=yf;用户 ID=ctm_dbo;密码=123</ConnectionString>
</应用程序设置>
</配置>
-------------------------------------------------- ------------------------
XmlDocument doc = new XmlDocument();
doc.Load(strXmlName);
XmlNode 节点=doc.SelectSingleNode("/configuration/appSettings/ConnectionString");
if(节点!=空)
{
字符串 k1=节点.Value; //无效的
string k2=node.InnerText;//数据源=yf;用户id=ctm_dbo;密码=123
string k3=node.InnerXml;//数据源=yf;用户id=ctm_dbo;密码=123
节点=空;
}
****************************************************** ******************
<?xml 版本=“1.0”编码=“utf-8”?>
<配置>
<应用程序设置>
<add key="ConnectionString" value="数据源=yf;用户id=ctm_dbo;密码=123" />
</应用程序设置>
</配置>
**------------------------------------------------ --------------------**
XmlNode 节点=doc.SelectSingleNode("/configuration/appSettings/add");
if(节点!=空)
{
字符串 k=node.Attributes["key"].Value;
string v=node.Attributes["value"].Value;
节点=空;
}
*------------------------------------------------- -------------------*
XmlNode 节点=doc.SelectSingleNode("/configuration/appSettings/add");
if(节点!=空)
{
XmlNodeReader nr=new XmlNodeReader(节点);
nr.MoveToContent();
//检查当前节点是否是内容节点。如果该节点不是内容节点,则读取器向前跳至下一个内容节点或文件末尾。
nr.MoveToAttribute("值");
字符串 s=nr.Value;
节点=空;
}
http://www.cnblogs.com/skylaugh/archive/2006/12/18/595637.html