我正在使用boost / property_tree来创建XML文件。 不幸的是,我无法弄清楚如何将xml样式表处理指令添加到文件中。
理想的输出:
<?xml version="1.0" encoding="utf-8"?> <-- This is added automatically
<?xml-stylesheet type="text/xsl" href="report.xsl"?> <-- How to add this line
<report>
...
</report>
使用boost / property_tree / ptree可以实现吗?
答案 0 :(得分:1)
似乎boost / property_tree xml writer不支持xml样式表处理指令。第一行(xml版本)只是在write_xml_internal函数中进行了硬编码。
所以我刚刚编写了自己的write xml函数,它完全相同,并添加了xml样式表。
void WriteXML(std::ostream &output, ptree &root)
{
boost::property_tree::xml_writer_settings<char> settings('\t', 1);
output << "<?xml version=\"1.0\" encoding=\"";
output << settings.encoding;
output << "\"?>\n";
output << "<?xml-stylesheet type=\"text/xsl\" href=\"report.xsl\"?>\n";
write_xml_element(output, std::basic_string<ptree::key_type::value_type>(), root, -1, settings);
}
答案 1 :(得分:1)
我的黑客是使用编写器设置:
boost::property_tree::xml_writer_settings<char> settings('\t', 1, "utf-8\"?>\n<?xml-stylesheet type=\"text/xsl\" href=\"report.xsl");
boost::property_tree::write_xml(yourAbsolutePath, yourPropertyTree, std::locale(), settings);
结果:
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="report.xsl"?>