91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

C++怎么讀寫ini配置文件

c++
小億
138
2024-01-30 16:00:05
欄目: 編程語言

在C++中,可以使用以下方法來讀寫ini配置文件:

  1. 首先,你需要包含頭文件<fstream><string>
#include <fstream>
#include <string>
  1. 讀取ini配置文件:
std::string GetValueFromIni(const std::string& filePath, const std::string& section, const std::string& key) {
    std::ifstream file(filePath);
    std::string line;
    std::string value;
    bool sectionFound = false;

    while (std::getline(file, line)) {
        // 如果找到了對應的section,則將sectionFound標記為true
        if (line.find("[" + section + "]") != std::string::npos) {
            sectionFound = true;
            continue;
        }

        // 如果當前行包含key,則獲取對應的value
        if (sectionFound && line.find(key) != std::string::npos) {
            // 從等號之后獲取value
            value = line.substr(line.find('=') + 1);
            // 去掉value中的空格
            value.erase(value.find_last_not_of(" \n\r\t") + 1);
            break;
        }
    }
    file.close();
    return value;
}
  1. 寫入ini配置文件:
void SetValueToIni(const std::string& filePath, const std::string& section, const std::string& key, const std::string& value) {
    std::ifstream file(filePath);
    std::string line;
    std::string content;
    bool sectionFound = false;
    bool keyFound = false;

    while (std::getline(file, line)) {
        // 如果找到了對應的section,則將sectionFound標記為true
        if (line.find("[" + section + "]") != std::string::npos) {
            sectionFound = true;
        }

        // 如果在對應的section中找到了key,則替換當前行為新的value
        if (sectionFound && line.find(key) != std::string::npos) {
            line = key + "=" + value;
            keyFound = true;
        }

        content += line + "\n";
    }
    file.close();

    // 如果section或key不存在,則在文件末尾添加新的section和key-value對
    if (!sectionFound) {
        content += "[" + section + "]\n";
        content += key + "=" + value + "\n";
    } else if (!keyFound) {
        content += key + "=" + value + "\n";
    }

    std::ofstream outFile(filePath);
    outFile << content;
    outFile.close();
}

以上是一個簡單的讀寫ini配置文件的示例,你可以根據自己的需要進行修改和擴展。請確保你具備對文件的讀寫權限,并提供正確的文件路徑。

0
沾益县| 镇宁| 依兰县| 同心县| 和顺县| 武平县| 卢湾区| 图们市| 高安市| 云霄县| 乐亭县| 大悟县| 威信县| 拉萨市| 沙田区| 城市| 土默特右旗| 洛浦县| 额济纳旗| 黄浦区| 镶黄旗| 康保县| 崇文区| 凌源市| 南投县| 南木林县| 若尔盖县| 上蔡县| 福州市| 绥中县| 准格尔旗| 洛浦县| 江门市| 肇东市| 湄潭县| 新乡县| 文山县| 柳林县| 宁南县| 尚义县| 涿州市|