c#—xml读取、增加、修改和删除操作
1.xml文件格式如下:
1.读取
DataSet ds = new DataSet();
ds.ReadXml(Server.MapPath(@”Projects.xml”));
DataTable dt = ds.Tables[0];
return dt;
//得到的datable在前台进行循环输出,省略…
//文字加粗
//文字底部加横线
2.新增
XmlDocument xmlDoc = new XmlDocument();
string Path = Server.MapPath(@”Projects.xml”);
xmlDoc.Load(Path);
XmlNode root=xmlDoc.SelectSingleNode(“projects”);
XmlElement xe1 = xmlDoc.CreateElement(“project”);
xe1.SetAttribute(“name”, txtProjectName.Text);
strVssPath = txtProjectVss.Text + “$” + txtProjectPath.Text + “$” + txtProjectSln.Text;
xe1.SetAttribute(“vss-path”,strVssPath);
root.AppendChild(xe1);
xmlDoc.Save(Path);
3.修改
XmlDocument xmlDoc = new XmlDocument();
string Path = Server.MapPath(@”Projects.xml”);
xmlDoc.Load(Path);
XmlNodeList nodelist = xmlDoc.SelectSingleNode(“projects”).ChildNodes;
foreach (XmlNode xn in nodelist)
{
XmlElement xe = (XmlElement)xn;
if (xe.GetAttribute(“name”) == Request[“name”].ToString())
{
xe.SetAttribute(“name”, txtProjectName1.Text);
strVssPath = txtProjectVss1.Text + “$” + txtProjectPath1.Text + “$” + txtProjectSln1.Text;
xe.SetAttribute(“vss-path”, strVssPath);
xmlDoc.Save(Path);
}
}
4.删除
XmlDocument xmlDoc = new XmlDocument();
string Path = Server.MapPath(@”Projects.xml”);
xmlDoc.Load(Path);
XmlNodeList nodelist = xmlDoc.SelectSingleNode(“projects”).ChildNodes;
foreach (XmlNode xn in nodelist)
{
XmlElement xe = (XmlElement)xn;
if (xe.GetAttribute(“name”) == Request[“name”].ToString())
{
xn.ParentNode.RemoveChild(xn);
xmlDoc.Save(Path);
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2554071.html