摘要
使用了下面5种方法来读取配置文件:1)字符串读写操作;2)xml解析配置文件;3)stl的读取配置文件封装类,很繁杂,但在大型配置文件中比较有用;4)shell语言的字符串匹配,这是最简单的;5)将1与4结合,shell与c的嵌套使用。
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
int
main(
int
argc,
char
*
argv[])
... {
FILE* file;
char input[100];
unsigned short port;
//fopen file to read
//...
while(1)
... {
FILE* file;
char input[100];
unsigned short port;
//fopen file to read
//...
while(1)