C# 创建,读取,写入XML文件
///
/// 创建XML文件
///
///
public void CreateXmlFile(string filename)
{
XmlDocument xmldoc = new XmlDocument();
XmlNode node;
node = xmldoc.CreateXmlDeclaration("1.0", "utf-8", null);
xmldoc.AppendChild(node);
XmlNode root = xmldoc.CreateElement("Users");
xmldoc.AppendChild(root);
CreateNode(xmldoc, root, "UserName", "zhengyd");
CreateNode(xmldoc, root, "Email", "zhengyd@gucas.ac,cn");
CreateNode(xmldoc, root, "Url", "www.gucas.an,cn");
CreateNode(xmldoc, root, "Age", "27");
try
{
xmldoc.Save(Server.MapPath(filename));
Response.Write("创建XML文件myxml.xml成功!");
}
catch (Exception ex)
{
Response.Write(ex.Message);
}
}
///
/// 写入XML文件
///
///
public void WriteXmlFile(string file)
{
XmlDocument xmdoc = new XmlDocument();
try
{
xmdoc.Load(Server.MapPath(file));
XmlNode root = xmdoc.SelectSingleNode("Advertisements");
if (root != null)
{
XmlNode node = xmdoc.CreateNode(XmlNodeType.Element, "Ad", null);
CreateNode(xmdoc, node, "ImageUrl", "google.gif");
CreateNode(xmdoc, node, "NavigateUrl", "http://www.google.com");
CreateNode(xmdoc, node, "Impressions", "30");
CreateNode(xmdoc, node, "Keyword", "google");
root.AppendChild(node);
}
xmdoc.Save(Server.MapPath(file));
Response.Write("写入XML文件XMLFile.xml成功。
");
}
catch(Exception ex) {
Response.Write(ex.Message);
}
}
///
/// 创建节点
///
///
///
///
///
public void CreateNode(XmlDocument xmldoc, XmlNode parentnode, string name, string value)
{
XmlNode node = xmldoc.CreateNode(XmlNodeType.Element, name, null);
node.InnerText = value;
parentnode.AppendChild(node);
}
///
/// 读取XML文件
///
///
private void ReadFile(string file)
{
XmlDocument xmldoc = new XmlDocument();
try
{
xmldoc.Load(Server.MapPath(file));
XmlNode node = xmldoc.SelectSingleNode("Advertisements");
if (node != null)
{
TreeNode root = new TreeNode();
root.Text = node.Name;
tvXml.Nodes.Add(root);
foreach (XmlNode xnode in xmldoc.SelectNodes("Advertisements/Ad"))
{
TreeNode tnode = new TreeNode();
tnode.Text = Server.HtmlEncode("<" + xnode.Name + ">");
root.ChildNodes.Add(tnode);
foreach (XmlNode xcnode in xnode.ChildNodes)
{
TreeNode tcnode = new TreeNode();
tcnode.Text = Server.HtmlEncode("<" + xcnode.Name + ">" + xcnode.InnerText + "" + xcnode.Name + ">");
tnode.ChildNodes.Add(tcnode);
}
TreeNode ttnode = new TreeNode();
ttnode.Text = Server.HtmlEncode("" + xnode.Name + "");
root.ChildNodes.Add(ttnode);
}
TreeNode tpnode = new TreeNode();
tpnode.Text = Server.HtmlEncode("" + node.Name + ">");
tvXml.Nodes.Add(tpnode);
}
}
catch (Exception ex)
{
Response.Write(ex.Message);
}
}
- .NET Core系列之MemoryCache 初识
- 007手机一键Root(安机网一键Root) v3.0 官方最新版 一键ROOT您的Android手机
- 12306密码被盗了怎么办?12306密码外泄解决方法
- 12个字的qq网名
- 150M迷你型无线路由器怎么设置?
- 192.168.1.1打不开怎么办?路由器192.168.1.1打不开的原因以及解决办法
- 2011年电子报合订本 电子报 编辑部 中文 PDF版 [84M]
- 2015年1月15日小米新旗舰发布会现场图文直播
- 2016.3.1vivo Xplay5新品发布会现场视频直播 优酷直播
- 2016华为P9发布会视频直播地址 4月15日华为P9国行发布会直播