logo 广告
Loading...
 导航 所在位置:论坛首页 -> ┈┋电脑网络┋┈ -> Asp/Asp.Net教程 -> 用XmlDocument创建XML文档
回复
标题:用XmlDocument创建XML文档收藏 编辑 删除 楼主 | 上一篇 下一篇
点点头
头像
等级:社区游侠
权限:普通用户
积分:25
金钱:3308
声望:52
经验:52
发帖数:775
注册:2007年1月16日
资料 短消息2008-8-11 11:38:06
代码如下:
 using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Xml;
namespace XMLDOMDemo
{


public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnLoad_Click(object sender, EventArgs e)
{
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load("Books.xml");
MessageBox.Show(xmlDoc.InnerXml);
}
//创建文档
private void btnCreate_Click(object sender, EventArgs e)
{
XmlDocument xmlDoc = new XmlDocument();
//建立Xml的定义声明
XmlDeclaration dec = xmlDoc.CreateXmlDeclaration("1.0", "GB2312", null);
xmlDoc.AppendChild(dec);
//创建根节点
XmlElement root = xmlDoc.CreateElement("Books");
xmlDoc.AppendChild(root);
XmlNode book = xmlDoc.CreateElement("Book");
XmlElement title = xmlDoc.CreateElement("Title");
title.InnerText = "SQL Server";
book.AppendChild(title);
XmlElement isbn = xmlDoc.CreateElement("ISBN");
isbn.InnerText = "444444";
book.AppendChild(isbn);
XmlElement author = xmlDoc.CreateElement("Author");
author.InnerText = "jia";
book.AppendChild(author);
XmlElement price = xmlDoc.CreateElement("Price");
price.InnerText = "120";
price.SetAttribute("Unit", "___FCKpd___0quot;);
book.AppendChild(price);
root.AppendChild(book);
xmlDoc.Save("Books.xml");
}

private void btnInsert_Click(object sender, EventArgs e)
{
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load("Books.xml");
XmlNode root = xmlDoc.SelectSingleNode("Books");
XmlElement book = xmlDoc.CreateElement("Book");
XmlElement title = xmlDoc.CreateElement("Title");
title.InnerText = "XML";
book.AppendChild(title);
XmlElement isbn = xmlDoc.CreateElement("ISBN");
isbn.InnerText = "333333";
book.AppendChild(isbn);
XmlElement author = xmlDoc.CreateElement("Author");
author.InnerText = "snow";
book.AppendChild(author);
XmlElement price = xmlDoc.CreateElement("Price");
price.InnerText = "120";
price.SetAttribute("Unit", "___FCKpd___0quot;);
book.AppendChild(price);
root.AppendChild(book);
xmlDoc.Save("Books.xml");
MessageBox.Show("数据已写入!");
}

private void btnUpdate_Click(object sender, EventArgs e)
{
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load("Books.xml");
//"//Book[@Unit=\"$\"]"
//获取Books节点的所有子节点
XmlNodeList nodeList = xmlDoc.SelectSingleNode("Books//Book").ChildNodes;
//遍历所有子节点
foreach (XmlNode xn in nodeList)
{
//将子节点类型转换为XmlElement类型
XmlElement xe = (XmlElement)xn;
if (xe.Name == "Author")
{
xe.InnerText = "amandag";
}
if (xe.GetAttribute("Unit") == "___FCKpd___0quot;)
{
xe.SetAttribute("Unit", "¥");
}
}
xmlDoc.Save("Books.xml");
}

private void btnDelete_Click(object sender, EventArgs e)
{
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load("Books.xml");
XmlNodeList nodeList = xmlDoc.SelectSingleNode("Books//Book").ChildNodes;
//遍历所有子节点
foreach (XmlNode xn in nodeList)
{
//将子节点类型转换为XmlElement类型
XmlElement xe = (XmlElement)xn;
if (xe.Name == "Author")
{
xe.RemoveAll();
}
if (xe.GetAttribute("Unit") == "¥")
{
xe.RemoveAttribute("Unit");
}
}
xmlDoc.Save("Books.xml");
}
}
}

签名

2008-8-11 11:38:06 顶部
第1页 共页 共0个回复     <<    >>    
 快速回复
  • 支持UBB,HTML标签

  • 高级回复

  • 操作选项:评分 加精 解精 奖惩 设专题 设公告 解公告 固顶 总固顶 解固顶 结帖 解结帖 锁帖 解锁 移帖 删帖
      首页 | 购买指南 | 虚拟主机 | 特色介绍 | 下载中心 | 支付方式
    Copyright 2004-2008 BBSGood.com Powered By: BBSGood.Speed Version 5.0
      咨询电话:0575-85513832、0575-85513825(传真)、7*24小时咨询服务:13606552007 不良信息举报中心 浙ICP备05029817号
      业务QQ:38958768、客服QQ1:415896239、客服QQ2:343896043、MSN:jccsxx@hotmail.com