如何在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,然后打印了文件中所有的节及其下面的键值对。

四、

相关问题拓展阅读:

  • linux里怎样修改 ini文件

linux里怎样修改 ini文件

您好,提问者:

cat xx.ini //查看文件内容

vi xx.ini //修改内容

提示:此时想要修改输入i,然后移动键盘进行修改,如果想要保存请ESC 然后输入:wq!

vi打开文件改

关于c linux读取ini文件的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站。

香港服务器首选树叶云,2H2G首月10元开通。
树叶云(shuyeidc.com)提供简单好用,价格厚道的香港/美国云服务器和独立服务器。IDC+ISP+ICP资质。ARIN和APNIC会员。成熟技术团队15年行业经验。

文章来源网络,作者:运维,如若转载,请注明出处:https://shuyeidc.com/wp/190222.html<

(0)
运维的头像运维
上一篇2025-03-31 13:43
下一篇 2025-03-31 13:45

相关推荐

  • 个人主题怎么制作?

    制作个人主题是一个将个人风格、兴趣或专业领域转化为视觉化或结构化内容的过程,无论是用于个人博客、作品集、社交媒体账号还是品牌形象,核心都是围绕“个人特色”展开,以下从定位、内容规划、视觉设计、技术实现四个维度,详细拆解制作个人主题的完整流程,明确主题定位:找到个人特色的核心主题定位是所有工作的起点,需要先回答……

    2025-11-20
    0
  • 社群营销管理关键是什么?

    社群营销的核心在于通过建立有温度、有价值、有归属感的社群,实现用户留存、转化和品牌传播,其管理需贯穿“目标定位-内容运营-用户互动-数据驱动-风险控制”全流程,以下从五个维度展开详细说明:明确社群定位与目标社群管理的首要任务是精准定位,需明确社群的核心价值(如行业交流、产品使用指导、兴趣分享等)、目标用户画像……

    2025-11-20
    0
  • 香港公司网站备案需要什么材料?

    香港公司进行网站备案是一个涉及多部门协调、流程相对严谨的过程,尤其需兼顾中国内地与香港两地的监管要求,由于香港公司注册地与中国内地不同,其网站若主要服务内地用户或使用内地服务器,需根据服务器位置、网站内容性质等,选择对应的备案路径(如工信部ICP备案或公安备案),以下从备案主体资格、流程步骤、材料准备、注意事项……

    2025-11-20
    0
  • 如何企业上云推广

    企业上云已成为数字化转型的核心战略,但推广过程中需结合行业特性、企业痛点与市场需求,构建系统性、多维度的推广体系,以下从市场定位、策略设计、执行落地及效果优化四个维度,详细拆解企业上云推广的实践路径,精准定位:明确目标企业与核心价值企业上云并非“一刀切”的方案,需先锁定目标客户群体,提炼差异化价值主张,客户分层……

    2025-11-20
    0
  • PS设计搜索框的实用技巧有哪些?

    在PS中设计一个美观且功能性的搜索框需要结合创意构思、视觉设计和用户体验考量,以下从设计思路、制作步骤、细节优化及交互预览等方面详细说明,帮助打造符合需求的搜索框,设计前的规划明确使用场景:根据网站或APP的整体风格确定搜索框的调性,例如极简风适合细线条和纯色,科技感适合渐变和发光效果,电商类则可能需要突出搜索……

    2025-11-20
    0

发表回复

您的邮箱地址不会被公开。必填项已用 * 标注