码迷,mamicode.com
首页 > Windows程序 > 详细

C# 读取配置文件方法

时间:2018-06-28 16:43:52      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:1.0   pre   utf-8   sharp   coding   pass   代码   encoding   类型   

如 xml中写:

<?xml version="1.0" encoding="utf-8" ?>
<config>
  <serv_ip>192.168.0.105</serv_ip>
  <database>test</database>
  <userid>sa</userid>
  <password>123456</password>
</config>

  

那么代码:

            XmlDocument xmlDoc = new XmlDocument();
            xmlDoc.Load("config.xml");
            XmlNode root = xmlDoc.SelectSingleNode("config");//指向根节点
            XmlNode xn = root.SelectSingleNode("serv_ip");//指向根节点下的serv_ip节点
            string ip = xn.InnerText;//读出里面的值 注意读取的是string 需要类型转换的话自己做
            XmlNode database = root.SelectSingleNode("database");
            string data = database.InnerText;
            XmlNode userid = root.SelectSingleNode("userid");
            string user = userid.InnerText;
            XmlNode password = root.SelectSingleNode("password");
            string pwd = password.InnerText;

  

C# 读取配置文件方法

标签:1.0   pre   utf-8   sharp   coding   pass   代码   encoding   类型   

原文地址:https://www.cnblogs.com/MagicAsa/p/9239226.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!