• linux c 读写 ini 配置文件


    .ini 文件格式如下:

    [section1]

    key1=value

    ...

    keyn=value

    [section2]

    key1=value

    ...

    keyn=value

    代码如下:

    #define _PARAM_GLOBALS_
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include "userlib.h"
    #include "paramConfig.h"
     
    #define SECTION_MAX_LEN 256
    #define STRVALUE_MAX_LEN 256
    #define LINE_CONTENT_MAX_LEN 256 //read value from .ini void IniReadValue(char* section, char* key, char* val, const char* file) { FILE* fp; int i = 0; int lineContentLen = 0; int position = 0; char lineContent[LINE_CONTENT_MAX_LEN]; bool bFoundSection = false; bool bFoundKey = false; fp = fopen(file, "r"); if(fp == NULL) { printf("%s: Opent file %s failed. ", __FILE__, file); return; } while(feof(fp) == 0) { memset(lineContent, 0, LINE_CONTENT_MAX_LEN); fgets(lineContent, LINE_CONTENT_MAX_LEN, fp); if((lineContent[0] == ';') || (lineContent[0] == '') || (lineContent[0] == ' ') || (lineContent[0] == ' ')) { continue; } //check section if(strncmp(lineContent, section, strlen(section)) == 0) { bFoundSection = true; //printf("Found section = %s ", lineContent); while(feof(fp) == 0) { memset(lineContent, 0, LINE_CONTENT_MAX_LEN); fgets(lineContent, LINE_CONTENT_MAX_LEN, fp); //check key if(strncmp(lineContent, key, strlen(key)) == 0) { bFoundKey = true; lineContentLen = strlen(lineContent); //find value for(i = strlen(key); i < lineContentLen; i++) { if(lineContent[i] == '=') { position = i + 1; break; } } if(i >= lineContentLen) break; strncpy(val, lineContent + position, strlen(lineContent + position)); lineContentLen = strlen(val); for(i = 0; i < lineContentLen; i++) { if((lineContent[i] == '') || (lineContent[i] == ' ') || (lineContent[i] == ' ')) { val[i] = ''; break; } } } else if(lineContent[0] == '[') { break; } } break; } } if(!bFoundSection){printf("No section = %s ", section);} else if(!bFoundKey){printf("No key = %s ", key);} fclose(fp); } int readStringValue(const char* section, char* key, char* val, const char* file) { char sect[SECTION_MAX_LEN]; //printf("section = %s, key = %s, file = %s ", section, key, file); if (section == NULL || key == NULL || val == NULL || file == NULL) { printf("%s: input parameter(s) is NULL! ", __func__); return READ_STR_ERR; } memset(sect, 0, SECTION_MAX_LEN); sprintf(sect, "[%s]", section); //printf("reading value... "); IniReadValue(sect, key, val, file); return READ_STR_OK; } int readIntValue(const char* section, char* key, const char* file) { char strValue[STRVALUE_MAX_LEN]; memset(strValue, '', STRVALUE_MAX_LEN); if(readStringValue(section, key, strValue, file) != READ_STR_OK) { printf("%s: error", __func__); return 0; } return(atoi(strValue)); } void IniWriteValue(const char* section, char* key, char* val, const char* file) { FILE* fp; int i = 0, n = 0, err = 0; int lineContentLen = 0; int position = 0; char lineContent[LINE_CONTENT_MAX_LEN]; char strWrite[LINE_CONTENT_MAX_LEN]; bool bFoundSection = false; bool bFoundKey = false; memset(lineContent, '', LINE_CONTENT_MAX_LEN); memset(strWrite, '', LINE_CONTENT_MAX_LEN); n = sprintf(strWrite, "%s=%s ", key, val); fp = fopen(file, "r+"); if(fp == NULL) { printf("%s: Opent file %s failed. ", __FILE__, file); return; } while(feof(fp) == 0) { memset(lineContent, 0, LINE_CONTENT_MAX_LEN); fgets(lineContent, LINE_CONTENT_MAX_LEN, fp); if((lineContent[0] == ';') || (lineContent[0] == '') || (lineContent[0] == ' ') || (lineContent[0] == ' ')) { continue; } //check section if(strncmp(lineContent, section, strlen(section)) == 0) { bFoundSection = true; while(feof(fp) == 0) { memset(lineContent, 0, LINE_CONTENT_MAX_LEN); fgets(lineContent, LINE_CONTENT_MAX_LEN, fp); //check key if(strncmp(lineContent, key, strlen(key)) == 0) { bFoundKey = true; printf("%s: %s=%s ", __func__, key, val); fseek(fp, (0-strlen(lineContent)),SEEK_CUR); err = fputs(strWrite, fp); if(err < 0){printf("%s err. ", __func__);} break; } else if(lineContent[0] == '[') { break; } } break; } } if(!bFoundSection){printf("No section = %s ", section);} else if(!bFoundKey){printf("No key = %s ", key);} fclose(fp); } int writeStringVlaue(const char* section, char* key, char* val, const char* file) { char sect[SECTION_MAX_LEN]; //printf("section = %s, key = %s, file = %s ", section, key, file); if (section == NULL || key == NULL || val == NULL || file == NULL) { printf("%s: input parameter(s) is NULL! ", __func__); return READ_STR_ERR; } memset(sect, '', SECTION_MAX_LEN); sprintf(sect, "[%s]", section); IniWriteValue(sect, key, val, file); } int writeIntValue(const char* section, char* key, int val, const char* file) { char strValue[STRVALUE_MAX_LEN]; memset(strValue, '', STRVALUE_MAX_LEN); sprintf(strValue, "%-4d", val); writeStringVlaue(section, key, strValue, file);
    }

    在 writeIntValue() 函数中 sprintf(strValue, "%-4d", val); 做了对齐及位宽处理,主要是因为避免不同的位数数据写入出现错误。目前还没想到比较好的解决方案,暂时就这样处理了。

  • 相关阅读:
    有点感叹,陪伴一年多的py2终于换py3了
    一句话检测XSS
    Mongodb3.4异常无法启动的处理 Process: 6874 ExecStart=/usr/bin/mongod --config /etc/mongod.conf (code=exited, status=100)
    Hadoop完全云计算平台搭建
    MySQL ERROR 3009 (HY000): Column count of mysql.user is wrong. Expected 45, found 42. Created with MySQL 50560, now running 50729. Please use mysql_upgrade to fix this error.
    v-on(事件处理)
    javascript获取以及设置光标位置
    小程序图片处理
    vue api
    处理回车提交、ctrl+enter和shift+enter都不提交->textarea正常换行
  • 原文地址:https://www.cnblogs.com/Waming-zhen/p/9225261.html
Copyright © 2020-2023  润新知