Xml通用操作类
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Xml; namespace CommonUtil
{
/// <summary>
/// Xml通用操作类
/// </summary>
public class XmlHelper
{
public XmlHelper()
{
} /// <summary>
/// 创建XML文件
/// </summary>
/// <param name="path">路径</param>
/// <param name="filename">xml文件名称(包含后缀名)</param>
/// <param name="rootname">根节点名称</param>
/**************************************************
* 使用示列:
* XmlHelper.CreateXmlFile(path, "text.xml", "root")
************************************************/
public static void CreateXmlFile(string path, string filename, string rootname)
{
try
{
if (path.Equals(""))
throw new Exception("路径不能为空!"); if (filename.Equals(""))
throw new Exception("文件名称不能为空!"); if (!filename.Split('.').GetValue(filename.Split('.').Length - 1).ToString().ToLower().Equals("xml"))
throw new Exception("文件后缀名称必须为xml!"); if (rootname.Equals(""))
throw new Exception("根节点名称不能为空!"); if (!Directory.Exists(path)) //如果路径不存在,则创建路径
Directory.CreateDirectory(path); StringBuilder builder = new StringBuilder();
builder.AppendLine("<?xml version=\"1.0\" encoding=\"utf-8\"?>");
if (!rootname.Equals(""))
{
builder.AppendLine("<" + rootname + ">");
builder.AppendLine("</" + rootname + ">");
} string fullpath = string.Empty;
XmlDocument doc = new XmlDocument();
doc.LoadXml(builder.ToString());
if (path.LastIndexOf('\\') == path.Length - 1)
fullpath = path + filename;
else
fullpath = path + "\\" + filename;
doc.Save(fullpath); //保存xml文件
}
catch
{
throw;
}
} /// <summary>
/// 读取数据
/// </summary>
/// <param name="path">全路径</param>
/// <param name="node">节点</param>
/// <param name="attribute">属性名,非空时返回该属性值,否则返回串联值</param>
/// <returns>string</returns>
/**************************************************
* 使用示列:
* XmlHelper.Read(path, "/Node", "")
* XmlHelper.Read(path, "/Node/Element[@Attribute='Value']", "Attribute")
************************************************/
public static string Read(string path, string node, string attribute)
{
string value = "";
try
{
if (!File.Exists(path))
throw new Exception("xml文件不存在!"); if (node.Equals(""))
throw new Exception("节点名称不能为空!"); XmlDocument doc = new XmlDocument();
doc.Load(path);
XmlNode xn = doc.SelectSingleNode(node);
value = (attribute.Equals("") ? xn.InnerText : xn.Attributes[attribute].Value);
}
catch
{
throw;
}
return value;
} /// <summary>
/// 读取数据
/// </summary>
/// <param name="path">全路径</param>
/// <param name="node">节点</param>
/// <param name="attribute">属性名,非空时返回该属性值,否则返回串联值</param>
/// <returns></returns>
public static List<string> ReadToList(string path, string node, string attribute)
{
List<string> nodelist = new List<string>(); try
{
if (!File.Exists(path))
throw new Exception("xml文件不存在!"); if (node.Equals(""))
throw new Exception("节点名称不能为空!"); XmlDocument doc = new XmlDocument();
doc.Load(path);
XmlNodeList nodes = doc.SelectNodes(node);
if (nodes != null && nodes.Count > 0)
{
foreach (XmlNode n in nodes)
{
if (attribute.Equals(""))
nodelist.Add(n.InnerText);
else
nodelist.Add(n.Attributes[attribute].Value);
}
}
else
{
nodelist = null;
}
}
catch
{
throw;
} return nodelist;
} /// <summary>
/// 插入数据
/// </summary>
/// <param name="path">全路径</param>
/// <param name="node">节点</param>
/// <param name="element">元素名,非空时插入新元素,否则在该元素中插入属性</param>
/// <param name="attribute">属性名,非空时插入该元素属性值,否则插入元素值</param>
/// <param name="value">值</param>
/// <returns></returns>
/**************************************************
* 使用示列:
* XmlHelper.Insert(path, "/Node", "Element", "", "Value")
* XmlHelper.Insert(path, "/Node", "Element", "Attribute", "Value")
* XmlHelper.Insert(path, "/Node", "", "Attribute", "Value")
* XmlHelper.Insert(path, "/Node/Element[@Attribute='Value']", "Element", "Attribute", "Value");
************************************************/
public static void Insert(string path, string node, string element, string attribute, string value)
{
try
{
if (!File.Exists(path))
throw new Exception("xml文件不存在!"); if (node.Equals(""))
throw new Exception("节点名称不能为空!"); if (element.Equals("") && attribute.Equals(""))
throw new Exception("元素名和属性名不能同时为空!"); XmlDocument doc = new XmlDocument();
doc.Load(path);
XmlNode xn = doc.SelectSingleNode(node);
if (element.Equals(""))
{
if (!attribute.Equals(""))
{
XmlElement xe = (XmlElement)xn;
xe.SetAttribute(attribute, value);
}
}
else
{
XmlElement xe = doc.CreateElement(element);
if (attribute.Equals(""))
xe.InnerText = value;
else
xe.SetAttribute(attribute, value);
xn.AppendChild(xe);
}
doc.Save(path);
}
catch
{
throw;
}
} /// <summary>
/// 修改数据
/// </summary>
/// <param name="path">全路径</param>
/// <param name="node">节点</param>
/// <param name="attribute">属性名,非空时修改该节点属性值,否则修改节点值</param>
/// <param name="value">值</param>
/// <returns></returns>
/**************************************************
* 使用示列:
* XmlHelper.Insert(path, "/Node", "", "Value")
* XmlHelper.Insert(path, "/Node", "Attribute", "Value")
************************************************/
public static void Update(string path, string node, string attribute, string value)
{
try
{
if (!File.Exists(path))
throw new Exception("xml文件不存在!"); if (node.Equals(""))
throw new Exception("节点名称不能为空!"); XmlDocument doc = new XmlDocument();
doc.Load(path);
XmlNode xn = doc.SelectSingleNode(node);
XmlElement xe = (XmlElement)xn;
if (attribute.Equals(""))
xe.InnerText = value;
else
xe.SetAttribute(attribute, value);
doc.Save(path);
}
catch
{
throw;
}
} /// <summary>
/// 删除数据
/// </summary>
/// <param name="path">全路径</param>
/// <param name="node">节点</param>
/// <param name="attribute">属性名,非空时删除该节点属性值,否则删除节点值</param>
/// <param name="value">值</param>
/// <returns></returns>
/**************************************************
* 使用示列:
* XmlHelper.Delete(path, "/Node", "")
* XmlHelper.Delete(path, "/Node", "Attribute")
************************************************/
public static void Delete(string path, string node, string attribute)
{
try
{
if (!File.Exists(path))
throw new Exception("xml文件不存在!"); if (node.Equals(""))
throw new Exception("节点名称不能为空!"); XmlDocument doc = new XmlDocument();
doc.Load(path);
XmlNodeList nodes = doc.SelectNodes(node);
if (nodes != null && nodes.Count > 0)
{
foreach (XmlNode xn in nodes)
{
XmlElement xe = (XmlElement)xn;
if (attribute.Equals(""))
xn.ParentNode.RemoveChild(xn);
else
xe.RemoveAttribute(attribute);
}
doc.Save(path);
}
}
catch
{
throw;
}
}
}
}
Xml通用操作类的更多相关文章
- XML文件操作类--创建XML文件
这个类是在微软XML操作类库上进行的封装,只是为了更加简单使用,包括XML类创建节点的示例. using System; using System.Collections; using System. ...
- PHP对XML文件操作类讲解
<?phpclass XML{ private $dom; function __construct () { $this->dom = new D ...
- C# XML文件操作类XmlHelper
类的完整代码: using System;using System.Collections;using System.Xml; namespace Keleyi.Com.XmlDAL{public c ...
- [No0000DE]C# XmlHelper XML类型操作 类封装
using System; using System.Data; using System.IO; using System.Text; using System.Threading; using S ...
- 通用数据库操作类,前端easyui-datagrid,form
实现功能: 左端datagrid显示简略信息,右侧显示选中行详细信息,数据库增删改 (1)点击选中行,右侧显示详细信息,其中[新增].[修改].[删除]按钮可用,[保存]按钮禁用 (2)点击[ ...
- 简单的XML操作类
/// <summary> /// XmlHelper 的摘要说明. /// xml操作类 /// </summary> public class XmlHelper { pr ...
- XML转换为对象操作类详解
//XML转换为对象操作类 //一,XML与Object转换类 using System.IO; using System.Runtime.Serialization.Formatters.Binar ...
- C#常用操作类库三(XML操作类)
/// <summary> /// XmlHelper 的摘要说明. /// xml操作类 /// </summary> public class XmlHelper { pr ...
- XML Helper XML操作类
写的一个XML操作类,包括读取/插入/修改/删除. using System;using System.Data;using System.Configuration;using System.Web ...
随机推荐
- SQLite使用教程7 删除表
http://www.runoob.com/sqlite/sqlite-drop-table.html SQLite 删除表 SQLite 的 DROP TABLE 语句用来删除表定义及其所有相关数据 ...
- DRM加密技术是怎么一回事
有时我们在播放从网上下载的影视文件时会要求输入用户许可证,否则就不能正常播放,听说是用了一种DRM技术,请简单介绍一下. 答:通常这是利用了多媒体DRM加密技术保护版权(DRM是数字权限管理技术的缩写 ...
- C# Redis Server分布式缓存编程(二)
在Redis编程中, 实体和集合类型则更加有趣和实用 namespace Zeus.Cache.Redis.Demo { public class Person { public int Id { g ...
- BZOJ 2257: [Jsoi2009]瓶子和燃料 裴蜀定理
2257: [Jsoi2009]瓶子和燃料 Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://www.lydsy.com/JudgeOnline/p ...
- WCF之初体验
什么是WCF? WCF的全称是:Windows通信基础(WindowsCommunication Foundation).本质来讲,他是一套软件开发包. WCF和WebService的差别 Webse ...
- 使用Eclipse建立Maven的SpringMVC项目
非常感谢博客的大神,让我成功地构建项目 http://limingnihao.iteye.com/blog/830409 但在依照这篇文章构建构建时遇到了一些问题,在这里总结一下: 问题一.2.3.2 ...
- el表达式跟ognl表达式的区别(转)
EL表达式: >>单纯在jsp页面中出现,是在四个作用域中取值,page,request,session,application.>>如果在struts环境中,它除了有在上面的 ...
- zTree 异步加载
zTree异步加载数据的简单实现,更为详细的Api请参考 zTree官网 http://www.treejs.cn/ <link href="~/Content/ztree/css ...
- Android 自学之绝对布局 AbsoluteLayout
绝对布局(AbsoluteLayout),绝对布局就像java AWT中的空布局:所谓的绝对布局就是Android不提供任何的布局控制,而是有开发人员自己通过X坐标和Y坐标来控制组件的位置.当使用绝对 ...
- wordpress 提取头像的src
获取用户头像,可以通过 $avatar_html = get_avatar( $email ); 获取到头像的html /** * Retrieve the avatar url for a user ...