如何在C语言下读取INI文件 (c linux读取ini文件)
INI文件是一种常用的配置文件格式,它通常用于存储程序的配置信息,比如窗口大小、用户设置、数据库配置等信息。在C语言中,读取INI文件是一项必要的技能。下面将介绍。
一、什么是INI文件
INI是英文“Initialization”的缩写,意为初始化。INI文件是一种普遍使用的文件类型,通常用于存储程序的配置信息。INI文件的格式如下:
“`ini
[section1]
key1=value1
key2=value2
[section2]
key1=value1
key2=value2
“`
其中,方括号表示一个节(section),里面的是键值对(key-value pr),每个键值对之间用等号连接。
二、使用C语言读取INI文件
C语言中常用的方法是使用标准库函数fopen和fread,首先我们需要定义一个结构体用来存储INI文件中的键值对。
“`c
typedef struct INIItem {
char* key;
char* value;
} INIItem;
“`
接下来,我们需要定义一个结构体用来存储INI文件中的节及其下面的键值对。
“`c
typedef struct INISection {
char* name;
int itemCount;
INIItem* items;
} INISection;
“`
其中,name表示节的名称,itemCount表示该节下的键值对数量,items是一个指针,指向该节下的所有键值对。
然后,我们定义一个结构体用来存储整个INI文件。
“`c
typedef struct INIFile {
int sectionCount;
INISection* sections;
} INIFile;
“`
其中,sectionCount表示INI文件中节的数量,sections是一个指针,指向INI文件中的所有节。
我们需要定义一个函数来读取INI文件,它的返回值是一个INIFile结构体,传入的参数是INI文件名。
“`c
INIFile readINIFile(const char* fileName) {
INIFile iniFile;
iniFile.sectionCount = 0;
iniFile.sections = NULL;
FILE* file = fopen(fileName, “r”);
if (file == NULL) {
return iniFile;
}
char line[256];
INISection* currentSection = NULL;
while (fgets(line, sizeof(line), file) != NULL) {
char* pos = line;
while (*pos == ‘ ‘ || *pos == ‘\t’) {
pos++;
}
if (*pos == ‘[‘) {
char* end = strchr(pos, ‘]’);
if (end != NULL) {
*end = ‘\0’;
INISection* section = malloc(sizeof(INISection));
section->name = strdup(pos + 1);
section->itemCount = 0;
section->items = NULL;
iniFile.sectionCount++;
iniFile.sections = realloc(iniFile.sections, iniFile.sectionCount * sizeof(INISection));
iniFile.sections[iniFile.sectionCount – 1] = *section;
currentSection = &(iniFile.sections[iniFile.sectionCount – 1]);
}
} else if (*pos != ‘\n’ && *pos != ‘\r’ && *pos != ‘#’) {
if (currentSection == NULL) {
INISection* section = malloc(sizeof(INISection));
section->name = strdup(“default”);
section->itemCount = 0;
section->items = NULL;
iniFile.sectionCount++;
iniFile.sections = realloc(iniFile.sections, iniFile.sectionCount * sizeof(INISection));
iniFile.sections[iniFile.sectionCount – 1] = *section;
currentSection = &(iniFile.sections[iniFile.sectionCount – 1]);
}
char* equals = strchr(pos, ‘=’);
if (equals != NULL) {
*equals = ‘\0’;
INIItem* item = malloc(sizeof(INIItem));
item->key = strdup(pos);
item->value = strdup(equals + 1);
currentSection->itemCount++;
currentSection->items = realloc(currentSection->items, currentSection->itemCount * sizeof(INIItem));
currentSection->items[currentSection->itemCount – 1] = *item;
}
}
}
fclose(file);
return iniFile;
}
“`
该函数先定义了一个名为iniFile的INIFile结构体,并初始化了它的sectionCount为0。接下来,使用fopen函数打开文件,并对文件内容进行处理。文件读取结束后,关闭文件,返回iniFile。
三、使用示例
以下是使用示例:
“`c
#include
#include
#include
typedef struct INIItem {
char* key;
char* value;
} INIItem;
typedef struct INISection {
char* name;
int itemCount;
INIItem* items;
} INISection;
typedef struct INIFile {
int sectionCount;
INISection* sections;
} INIFile;
INIFile readINIFile(const char* fileName) {
INIFile iniFile;
iniFile.sectionCount = 0;
iniFile.sections = NULL;
FILE* file = fopen(fileName, “r”);
if (file == NULL) {
return iniFile;
}
char line[256];
INISection* currentSection = NULL;
while (fgets(line, sizeof(line), file) != NULL) {
char* pos = line;
while (*pos == ‘ ‘ || *pos == ‘\t’) {
pos++;
}
if (*pos == ‘[‘) {
char* end = strchr(pos, ‘]’);
if (end != NULL) {
*end = ‘\0’;
INISection* section = malloc(sizeof(INISection));
section->name = strdup(pos + 1);
section->itemCount = 0;
section->items = NULL;
iniFile.sectionCount++;
iniFile.sections = realloc(iniFile.sections, iniFile.sectionCount * sizeof(INISection));
iniFile.sections[iniFile.sectionCount – 1] = *section;
currentSection = &(iniFile.sections[iniFile.sectionCount – 1]);
}
} else if (*pos != ‘\n’ && *pos != ‘\r’ && *pos != ‘#’) {
if (currentSection == NULL) {
INISection* section = malloc(sizeof(INISection));
section->name = strdup(“default”);
section->itemCount = 0;
section->items = NULL;
iniFile.sectionCount++;
iniFile.sections = realloc(iniFile.sections, iniFile.sectionCount * sizeof(INISection));
iniFile.sections[iniFile.sectionCount – 1] = *section;
currentSection = &(iniFile.sections[iniFile.sectionCount – 1]);
}
char* equals = strchr(pos, ‘=’);
if (equals != NULL) {
*equals = ‘\0’;
INIItem* item = malloc(sizeof(INIItem));
item->key = strdup(pos);
item->value = strdup(equals + 1);
currentSection->itemCount++;
currentSection->items = realloc(currentSection->items, currentSection->itemCount * sizeof(INIItem));
currentSection->items[currentSection->itemCount – 1] = *item;
}
}
}
fclose(file);
return iniFile;
}
int mn() {
INIFile iniFile = readINIFile(“example.ini”);
for (int i = 0; i
printf(“[%s]\n”, iniFile.sections[i].name);
for (int j = 0; j
printf(“%s=%s\n”, iniFile.sections[i].items[j].key, iniFile.sections[i].items[j].value);
}
printf(“\n”);
}
return 0;
}
“`
在以上示例中,我们读取了文件example.ini,然后打印了文件中所有的节及其下面的键值对。
四、