boost::property_tree XML pretty printing(boost::property_tree XML 漂亮打印)
问题描述
我正在使用 boost::property_tree 在我的应用程序中读取和写入 XML 配置文件.但是当我编写文件时,输出看起来有点难看,文件中有很多空行.问题是它也应该由人类编辑,所以我想获得更好的输出.
I'm using boost::property_tree to read and write XML configuration files in my application. But when I write the file the output looks kind of ugly with lots of empty lines in the file. The problem is that it's supposed to be edited by humans too so I'd like to get a better output.
举个例子,我写了一个小测试程序:
As an example I wrote a small test program :
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
int main( void )
{
using boost::property_tree::ptree;
ptree pt;
// reading file.xml
read_xml("file.xml", pt);
// writing the unchanged ptree in file2.xml
boost::property_tree::xml_writer_settings<char> settings(' ', 1);
write_xml("file2.xml", pt, std::locale(), settings);
return 0;
}
file.xml 包含:
file.xml contains:
<?xml version="1.0" ?>
<config>
<net>
<listenPort>10420</listenPort>
</net>
</config>
运行后的程序file2.xml包含:
after running the program file2.xml contains:
<?xml version="1.0" encoding="utf-8"?>
<config>
<net>
<listenPort>10420</listenPort>
</net>
</config>
除了手动查看输出并删除空行之外,还有什么方法可以获得更好的输出?
Is there a way to have a better output, other than going manually through the output and deleting empty lines?
推荐答案
解决方案是在对 read_xml 的调用中添加 trim_whitespace 标志:
The solution was to add the trim_whitespace flag to the call to read_xml:
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
int main( void )
{
// Create an empty property tree object
using boost::property_tree::ptree;
ptree pt;
// reading file.xml
read_xml("file.xml", pt, boost::property_tree::xml_parser::trim_whitespace );
// writing the unchanged ptree in file2.xml
boost::property_tree::xml_writer_settings<char> settings(' ', 1);
write_xml("file2.xml", pt, std::locale(), settings);
return 0;
}
该标志记录在此处 但该库的当前维护者 (Sebastien Redl) 很友好地回答并指出了它.
The flag is documented here but the current maintainer of the library (Sebastien Redl) was kind enough to answer and point me to it.
这篇关于boost::property_tree XML 漂亮打印的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:boost::property_tree XML 漂亮打印
基础教程推荐
- CString 到 char* 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 初始化列表*参数*评估顺序 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
