首页 > 代码库 > .Net常用技巧_读取XML某节点例子
.Net常用技巧_读取XML某节点例子
注:此例子只是自己在代码中为了读某固定的几个值,写的有点死,所以另作他用的时候请自行修改或扩充
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 MyTool{ public class GetConfigValue { /// <summary> /// 读取应用程序列当前配置文件,指定节点的值 /// </summary> /// <param name="AppKey"></param> /// <returns></returns> public static string Get_ConfigValue(string configFileName, string AppKey) { try { System.Xml.XmlDocument xDoc = new System.Xml.XmlDocument(); xDoc.Load(System.Windows.Forms.Application.StartupPath + "\\" + configFileName); System.Xml.XmlNode xNode; System.Xml.XmlElement xElem1; xNode = xDoc.SelectSingleNode("//appSettings"); xElem1 = (XmlElement)xNode.SelectSingleNode("//add[@key=‘" + AppKey + "‘]"); //xElem1 = (XmlElement)xNode.SelectSingleNode("//add key=‘" + AppKey + "‘"); if (xElem1 != null) { string val = xElem1.GetAttribute("value"); return val; } else { return ""; } } catch//(Exception ex) { return ""; } } }}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。