XML 增删改查
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
using System.Xml;
using System.Data;
public class Cls_XML
{
#region 创建xml文件
/// <summary>
/// 创建xml文件
/// </summary>
/// <param name="filepath"></param>
public void CreateXmlFile(string filepath, string filetext)
{
XmlDocument xmldoc = new XmlDocument(); //创建空的XML文档
//xmldoc.LoadXml("<?xml version='1.0' encoding='gb2312'?>" +
// "<bookstore>" +
// "<book genre='fantasy' ISBN='2-3631-4'>" +
// "<title>Oberon's Legacy</title>" +
// "<author>Corets, Eva</author>" +
// "<price>5.95</price>" +
// "</book>" +
// "</bookstore>");
xmldoc.LoadXml(filetext);
xmldoc.Save(filepath); //保存
}
#endregion
#region 为父节点添加 子节点(子节点可以带属性)
/// <summary>
/// 为父节点添加 子节点(ArrayList 存放 Hashtable 第一个是节点名称,其他为节点属性)
/// </summary>
/// <param name="filepath"></param>
/// <param name="PatentNod"></param>
/// <param name="arrL">ArrayList 存放 Hashtable 第一个是节点名称,其他为节点属性,存放</param>
&
相关文档:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Xml;
namespace WebApplication2
{
/// <summary>
/// XMLHelper XML文档操作管理器
&nb ......
转自江边孤鸟: http://blog.csdn.net/jbgh608/archive/2007/08/31/1767414.aspx
W3school 的xsl教程: http://www.w3school.com.cn/xsl/index.asp
产品几年前使用ASP,后来升级到.Net 1.1,再升级到2.0,一直都有用XSLT转换XML生成网页的方式,稍微整理下。
XML file:
<?xml version="1.0"& ......
通过xsl转换大xml文件
这几天在做这个,网上的几个方法我都试过了,汇总如下
方法一:
XPathDocument myXPathDoc = new XPathDocument(tbXMLFile.Text);
XslCompiledTransform myXslTrans = new XslCompiledTransform();
myXslTrans.Load(tbXSLFile.Text);
XmlTextWriter myWriter = new XmlTextWrit ......
1)DOM(JAXP Crimson解析器)
DOM是用与平台和语言无关的方式表示XML文档的官方W3C标准。DOM是以层次结构组织的节点或信息片断的集合。这个层次结构允许开发人员在树中寻找
特定信息。分析该结构通常需要加载整个文档和构造层次结构,然后才能做任何工作。由于它是基于信息层次的,因而DOM被 ......
添加XML节点
/// <summary>
/// 初始化XML status-0
/// </summary>
/// <returns></returns>
private bool InitialConfig()
{
bool b ......