c_cpp 提升读写ini文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 提升读写ini文件相关的知识,希望对你有一定的参考价值。
#include <iostream>
#include <boost/filesystem.hpp>
#include <boost/property_tree/ini_parser.hpp>
using namespace boost;
using namespace std;
//
class CIniFile
{
//
string m_path;
property_tree::ptree m_data;
public:
//
CIniFile(const string & filename)
{
m_path = exe_directory(filename);
property_tree::ini_parser::read_ini(m_path, m_data);
}
~CIniFile()
{
Write();
}
//
void Write(const string & path="")
{
string save_path = (path.length() ? exe_directory(path) : m_path);
property_tree::ini_parser::write_ini(save_path, m_data);
}
//
template <typename T>
T Get(const string & key)
{
return m_data.get<T>(key);
}
//
template <typename T>
void Set(const string & key, const T & value){
m_data.put(key, value);
}
};
//
CIniFile ini("test.ini");
cout << ini.Get<string>("app.f1") << endl;
ini.Set("app.f2", 12345);
ini.Write();
以上是关于c_cpp 提升读写ini文件的主要内容,如果未能解决你的问题,请参考以下文章
VB读写INI文件
c_cpp 用C读写文件
python-inipython读写ini文件
python读写ini文件
python3.9 读写ini文件
C# 读写Ini文件