C++ 中使用boost::property_tree读取解析ini文件

boost 官网 http://www.boost.org/

下载页面 http://sourceforge.net/projects/boost/files/boost/1.53.0/

我下载的是 boost_1_53_0.tar.gz

使用系统  ubuntu 12.10

一、解压

[plain] view plaincopy

  1. tar -zxvf  boost_1_53_0.tar.gz

得到一个文件夹 boost_1_53_0,  拷贝其子目录 boost 到以下路径

[plain] view plaincopy

  1. /usr/local/include/

二、编写读取解析ini的类文件

ini.h

[cpp] view plaincopy

  1. /*
  2. * File:   ini.h
  3. * Author: [email protected]
  4. *
  5. * Created on 2013年3月18日, 下午2:51
  6. */
  7. #ifndef INI_H
  8. #define INI_H
  9. #include <boost/property_tree/ptree.hpp>
  10. #include <boost/property_tree/ini_parser.hpp>
  11. #include <string>
  12. using namespace std;
  13. class Ini{
  14. public:
  15. Ini(string ini_file);
  16. string get(string path);
  17. short int errCode();
  18. private:
  19. short int err_code;
  20. boost::property_tree::ptree m_pt;
  21. };
  22. #endif  /* INI_H */

ini.cpp

[cpp] view plaincopy

  1. #include "ini.h"
  2. Ini::Ini(string ini_file){
  3. if (access(ini_file.c_str(), 0) == 0) {
  4. this->err_code = 0;
  5. boost::property_tree::ini_parser::read_ini(ini_file, this->m_pt);
  6. } else {
  7. this->err_code = 1;
  8. }
  9. }
  10. short Ini::errCode(){
  11. return this->err_code;
  12. }
  13. string Ini::get(string path){
  14. if (this->err_code == 0) {
  15. return this->m_pt.get<string>(path);
  16. } else {
  17. return "";
  18. }
  19. }

三、测试

main.cpp

[cpp] view plaincopy

    1. #include <cstdlib>
    2. #include <stdio.h>
    3. #include <iostream>
    4. #include <string>
    5. #include "ini.h"
    6. using namespace std;
    7. /*
    8. *
    9. */
    10. int main(int argc, char** argv) {
    11. string ini_file = "/home/share/code/CppClass/test1.ini";
    12. Ini ini(ini_file);
    13. cout<<ini.get("public.abc")<<endl;
    14. return 0;
    15. }

C++ 中使用boost::property_tree读取解析ini文件,布布扣,bubuko.com

时间: 2024-10-06 19:38:57

C++ 中使用boost::property_tree读取解析ini文件的相关文章

boost::property_tree读取解析ini文件--推荐

boost::property_tree读取解析ini文件 [cpp] view plaincopy #include "stdafx.h" #include <iostream> #include <boost/property_tree/ptree.hpp> #include <boost/property_tree/ini_parser.hpp> int main() { boost::property_tree::ptree pt; boos

boost::property_tree读取解析.xml文件

1)read_xml 支持中文路径  boost::property_tree::wptree wpt;    std::locale::global(std::locale(""));    boost::property_tree::xml_parser::read_xml("E:\\测试\\test.xml",wpt); 2)get  ptree pt;    read_xml("D://test1.xml",pt); //读入一个xml文

练习:读取解析CSV文件,将读取结果输出的控制台上,并封装到4个Teacher对象中.

/** *    读取解析CSV文件,将读取结果输出的控制台上,并封装到4个Teacher对象中. *    1, 土鳖, 13101015338, 北京海淀区 2, 咪咪, 13201015338, 北京朝阳区 3, 小仓, 13601015818, 北京宣武区 4, 饭岛爱, 13201025818, 北京朝阳区 /** * 读取解析CSV文件,将读取结果输出的控制台上,并封装到4个Teacher对象中. * 1, 土鳖, 13101015338, 北京海淀区 2, 咪咪, 13201015

实战parse_ini_file()及扩展函数解析ini文件完整版

在PHP网站开发的过程中,往往会用到读取ini参数配置文件,比如需要访问一些复杂的借口,就可以直接在参数配置文件里面修改参数,然后再php脚本里面直接读取执行.而php有一个可以直接读取ini配置文件的函数parse_ini_file(),并以数组的形式返回.下面详细讲解一下采用PHP内置函数parse_ini_file,读取ini配置文件. 参数说明:array parse_ini_file ( string $filename [, bool $process_sections ] ) pa

解决ini-parser解析ini文件中文乱码问题

rickyah/ini-parser 是一个.net 平台解析ini文件的库,当ini文件中含有中文字符时会乱码. 解决:将文件通过Editplus 等文本编辑工具保存为 utf-8 + bom 格式即可. 原文地址:https://www.cnblogs.com/nodegis/p/9581327.html

boost.property_tree读取中文乱码问题正确的解决方式

开发项目的时候在使用boost,在宽字符下遇到中文乱码问题 上网上看大家都是先转成utf8在进行解析的,例如: http://blog.csdn.net/hu_jiangan/article/details/49945373 中 void Init(const wstring& fileName, wptree& ptree) { std::wifstream f(fileName); std::locale utf8Locale(std::locale(), new std::codec

Python 解析ini文件 By ConfigParser

ini文件是windows中经常使用的配置文件,主要的格式为: [Section1] option1 : value1 option2 : value2 python提供了一个简单的模块ConfigParser可以用来解析类似这种形式的文件.对于ConfigParser模块可以解析key:value和key=value这样的类型,对于#和;开头的行将会自动忽视掉.相当于注释行.常用的函数: ConfigParser.RawConfigParser() RawConfigParser Object

C语言实现 读取写入ini文件实现(转)

#include <stdio.h> #include <string.h> /* * 函数名: GetIniKeyString * 入口参数: title * 配置文件中一组数据的标识 * key * 这组数据中要读出的值的标识 * filename * 要读取的文件路径 * 返回值: 找到需要查的值则返回正确结果 * 否则返回NULL */ char *GetIniKeyString(char *title,char *key,char *filename) { FILE *f

C#控制台基础 streamreader 中的readline方法读取指定txt文件的第一行

1.代码 1 using System; 2 using System.Collections.Generic; 3 using System.IO; 4 using System.Linq; 5 using System.Text; 6 using System.Threading.Tasks; 7 8 namespace ConsoleApplication4 9 { 10 class Program 11 { 12 static void Main(string[] args) 13 {