博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
读取config文件中的键值
阅读量:6721 次
发布时间:2019-06-25

本文共 1210 字,大约阅读时间需要 4 分钟。

新建个config文件

读取的函数

1 public IList AppConfigGet(string keyName)  2     {
3 string strReturn = string.Empty; 4 XmlDocument document = new XmlDocument(); 5 document.Load(Server.MapPath("~/RealManage/RealActComputeDisparch.config")); 6 ArrayList list = new ArrayList(); 7 XmlNodeList nodes = document.GetElementsByTagName("add"); 8 for (int i = 0; i < nodes.Count; i++) 9 {
10 XmlAttribute attribute = nodes[i].Attributes["key"]; 11 if (attribute != null && (attribute.Value == keyName)) 12 {
13 attribute = nodes[i].Attributes["value"]; 14 if (attribute != null) 15 {
16 list.Add(attribute.Value); 17 18 } 19 } 20 } 21 return list; 22 }

在调用这个函数是要注意

 

IList list = AppConfigGet("useRow"); foreach(string row in list)//此处的string是list里面的值的类型                 {。。。}

转载于:https://www.cnblogs.com/modu-xl/archive/2011/11/23/2260290.html

你可能感兴趣的文章
CentOS 挂载fat32 中文乱码
查看>>
一个好的icon下载网站
查看>>
C++中的substr()
查看>>
【C语言】球体从100米下落问题
查看>>
(问题解决篇)ubuntu更新时,出现错误E: Some index files failed to download。。。
查看>>
Linux学习之路
查看>>
笔记七
查看>>
vsftpd
查看>>
零基础如何学习Python编程
查看>>
gallery长按监听
查看>>
创建swap分区脚本
查看>>
CI框架获取post和get参数 CodeIgniter
查看>>
VRRP虚拟冗余路由协议配置实验:
查看>>
Hanlp在ubuntu中的使用方法介绍
查看>>
阿里分布式事务框架GTS开源啦!
查看>>
论router-on-a-stick和VLAN-IF
查看>>
网络分流器-网络分流器-5G的关键技术第一篇
查看>>
区块链之Hyperledger(超级账本)Fabric v1.0 的环境搭建(超详细教程)
查看>>
大快搜索数据爬虫技术实例安装教学篇
查看>>
Navicat使用教程:从MySQL中的多个表和视图中获取行计数(第3部分)
查看>>