Is it possible, via the xml_writer_settings used as third parameter in the write_xml call, to omit the xml declaration when the function saves the xml? I mean, I would like not to have the initial "xml version="blah" encoding="blah blah" part. I'm searching the internet but I still haven't found an answer. How to do it?
No, it's not possible. look here for members of xml_writer_settings
And too, write_xml
calls write_xml_internal
that is (in boost 1.52)
template<class Ptree>
void write_xml_internal(
std::basic_ostream<typename Ptree::key_type::value_type> &stream,
const Ptree &pt,
const std::string &filename,
const xml_writer_settings<typename Ptree::key_type::value_type> & settings)
{
typedef typename Ptree::key_type::value_type Ch;
typedef typename std::basic_string<Ch> Str;
stream << detail::widen<Ch>("<?xml version=\"1.0\" encoding=\"")
<< settings.encoding
<< detail::widen<Ch>("\"?>\n");
write_xml_element(stream, Str(), pt, -1, settings);
if (!stream)
BOOST_PROPERTY_TREE_THROW(xml_parser_error("write error", filename, 0));
}
Yes, it is possible, but you'll need to call the function 'write_xml_element' directly. Here is an example with boost 1.49:
using namespace boost::property_tree;
ptree pt;
...
write_xml_element(std::cout,ptree::key_type(),pt,-1,xml_writer_settings<ptree::key_type::value_type>());
Of course. you can replace the standard output with std::ofstream or any other output stream you want.
::value_type
in xml_writer_settings<>
(so it's xml_writer_settings<ptree::key_type>()
) - newer boost versions use the key_type
to get the value_type
. My code is just: write_xml_element(std::cout, {}, tree, -1, xml_writer_settings<ptree::key_type>{});
. Thanks for your answer, helped me a lot! –
Zimmermann No, it's not possible. look here for members of xml_writer_settings
And too, write_xml
calls write_xml_internal
that is (in boost 1.52)
template<class Ptree>
void write_xml_internal(
std::basic_ostream<typename Ptree::key_type::value_type> &stream,
const Ptree &pt,
const std::string &filename,
const xml_writer_settings<typename Ptree::key_type::value_type> & settings)
{
typedef typename Ptree::key_type::value_type Ch;
typedef typename std::basic_string<Ch> Str;
stream << detail::widen<Ch>("<?xml version=\"1.0\" encoding=\"")
<< settings.encoding
<< detail::widen<Ch>("\"?>\n");
write_xml_element(stream, Str(), pt, -1, settings);
if (!stream)
BOOST_PROPERTY_TREE_THROW(xml_parser_error("write error", filename, 0));
}
It seems that write_xml_element can't work without xml_writer_settings. And xml_writer_settings has two different incompatible versions; one with and another with .
In boost v1.58 this line is valid:
boost::property_tree::xml_writer_settings<std::string> settings;
boost::property_tree::xml_parser::write_xml_element(xmlStream,ptree::key_type(),pt_,-1, settings);
while in boost 1.54 these are valid:
boost::property_tree::xml_writer_settings<char> settings;
boost::property_tree::xml_parser::write_xml_element(xmlStream,ptree::key_type(),pt_,-1, settings);
I'm not sure if there is any solution for unifying them. So consider the boost version when working with write_xml_element.
© 2022 - 2024 — McMap. All rights reserved.