我有一个xml文件,我需要在该文件中修改一些属性。
我的xml文件如下所示:
<ns0:App xmlns:ns0="AppSchema" MyDir1="C:\App\Dir1" MyDir2="C:\App\Dir2" ..... some other attributes>
<ns0:Backend DisableBackend="false">
<ns0:Logging EnableLogging="false" LogPath="c:\mylogs"/>
<ns0:ExternalTool EnableTool="false"/>
</ns0:Backend>
</ns0:App>
我需要在此xml文件中修改MyDir1,MyDir2,EnableLogging,EnableTool等属性的值。
谷歌搜索帮助我从属性中获取价值,但没有运气 - 如何修改属性值,或者可能是我没有使用正确的语法。
有人可以指导我吗?
我尝试过的代码如下:
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
using namespace boost::property_tree;
int main()
{
std::string xml_original = "C:\\temp\\config.xml";
std::string xml_updated = "C:\\temp\\config_updated.xml";
ptree tree;
read_xml(sysCfg, tree);
std::cout<<"old value: " << tree.get<std::string>("App.<xmlattr>.MyDir1");
tree.put("App.<xmlattr>.MyDir1", "newPath");
xml_writer_settings<char> w(' ', 4);
write_xml(xml_updated, tree, std::locale(), w);
}
答案 0 :(得分:0)
您必须包含命名空间。我还使用std::string
作为xml_writer_settings
:
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
#include <iostream>
using namespace boost::property_tree;
int main()
{
std::string xml_original = "config.xml";
std::string xml_updated = "config_updated.xml";
ptree tree;
read_xml(xml_original, tree);
// must include the ns0 namespace
std::cout << "old value: " << tree.get<std::string>("ns0:App.<xmlattr>.MyDir1");
tree.put("ns0:App.<xmlattr>.MyDir1", "newPath");
xml_writer_settings<std::string> w(' ', 4);
write_xml(xml_updated, tree, std::locale(), w);
}