45fan.com - 路饭网

搜索: 您的位置主页 > 网络频道 > 阅读资讯:有什么样的方法技巧读取配置文件?

有什么样的方法技巧读取配置文件?

2016-08-26 15:10:41 来源:www.45fan.com 【

有什么样的方法技巧读取配置文件?

摘要

使用了下面5种方法来读取配置文件:1)字符串读写操作;2)xml解析配置文件;3)stl的读取配置文件封装类,很繁杂,但在大型配置文件中比较有用;4)shell语言的字符串匹配,这是最简单的;5)14结合,shellc的嵌套使用。

1字符串读写操作

测试文件[test.init]

#ini for path

[path]

dictfile = /home/tmp/dict.dat

inputfile= /home/tmp/input.txt

outputfile= /home/tmp/output.txt

#ini for exe

[exe]

user= winter //user name

passwd= 1234567 #pass word

database= mydatabase

 

有什么样的方法技巧读取配置文件?intmain(intargc,char*argv[])
有什么样的方法技巧读取配置文件?有什么样的方法技巧读取配置文件?
{
有什么样的方法技巧读取配置文件?FILE
*file;
有什么样的方法技巧读取配置文件?
charinput[100];
有什么样的方法技巧读取配置文件?unsigned
shortport;
有什么样的方法技巧读取配置文件?
//fopenfiletoread
有什么样的方法技巧读取配置文件?
//...
有什么样的方法技巧读取配置文件?while(1)
有什么样的方法技巧读取配置文件?有什么样的方法技巧读取配置文件?
{
有什么样的方法技巧读取配置文件?
char*s=fgets(input,100,file);
有什么样的方法技巧读取配置文件?
if(s==NULL)break;
有什么样的方法技巧读取配置文件?
if((!strchr(input,'#')||(!strchr(input,'['))continue;
有什么样的方法技巧读取配置文件?
if(!strncasecmp(input,"port",4))
有什么样的方法技巧读取配置文件?有什么样的方法技巧读取配置文件?
{
有什么样的方法技巧读取配置文件?port
=atoi(strchr(input,''));
有什么样的方法技巧读取配置文件?}

有什么样的方法技巧读取配置文件?if()//...
有什么样的方法技巧读取配置文件?
有什么样的方法技巧读取配置文件?}

有什么样的方法技巧读取配置文件?return0;
有什么样的方法技巧读取配置文件?}

有什么样的方法技巧读取配置文件?

本文地址:http://www.45fan.com/a/question/67917.html
Tags: 方法 配置文件 取的
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部