我有这样的字符串
> <?xml version="1.0" encoding="utf-8"?> <Parameters>
> <Parameter id="ID_1" value="1"/>
> <Parameter id="ID_2" value="000293604959"/>
> <Parameter id="ID_3" value="MIIDzzCCAregAwIBAgIQBU7WUKqJI"/> //Variable length data
> <Parameter id="ID_4" value="MIIDyDCCArCgAwIBAgIGAWSjA2NaMA0GCSqGS"/> //Variable length data
> <Parameter id="ID_5" value="MIIDcDCCAligAwIBAgIEATMzfzANBgkqhk"/> //Variable length data
> <Parameter id="ID-6" value="WIN_10_64_bit"/> </Parameters>
我希望将其打印为(预期输出)表示隐藏ID_3,ID_4和ID_5数据。
> <?xml version="1.0" encoding="utf-8"?> <Parameters>
> <Parameter id="ID_1" value="1"/>
> <Parameter id="ID_2" value="000293604959"/>
> <Parameter id="ID_3" value="Sensitive Data"/> //Variable length data
> <Parameter id="ID_4" value="Sensitive Data"/> //Variable length data
> <Parameter id="ID_5" value="Sensitive Data"/> //Variable length data
> <Parameter id="ID-6" value="WIN_10_64_bit"/>
到目前为止,我已经尝试过了,但是没有运气。请让我知道我在哪里做错了,将值字段更新为敏感数据的真实值。
void hideData(string request)
{
stringstream ss;
ss.str(request);
boost::property_tree::ptree pt1;
boost::property_tree::read_xml(ss, pt1);
ostringstream oss;
string finalStringToPrint;
if (!pt1.empty())
{
BOOST_FOREACH(boost::property_tree::ptree::value_type const& node, pt1.get_child("Parameters"))
{
if (node.first == "Parameter")
{
string id = node.second.get_child("<xmlattr>.id").data();
if (id == "ID_3")
{
string value = node.second.get_child("<xmlattr>.value").data();
value.erase();
value.assign("Sensitive Data");
pt1.put_value(value);
}
if (id == "ID_4")
{
string value = node.second.get_child("<xmlattr>.value").data();
value.erase();
value.assign("Sensitive Data");
pt1.put_value(value);
}
if (id == "ID_5")
{
string value = node.second.get_child("<xmlattr>.value").data();
value.erase();
value.assign("Sensitive Data");
pt1.put_value(value);
}
}
}
}
boost::property_tree::write_xml(oss, pt1, boost::property_tree::xml_writer_make_settings<string>(' ', 4));
finalStringToPrint = oss.str();
cout << finalStringToPrint << endl;
}
答案 0 :(得分:0)
您要修改某个节点中的数据,因此调用get_child
,保留对返回的子节点的引用,然后在此节点上调用put_value
:
if (id == "ID_3")
{
auto& child = node.second.get_child("<xmlattr>.value");
child.put_value("Sensitive Data");
}
if (id == "ID_4")
{
auto& child = node.second.get_child("<xmlattr>.value");
child.put_value("Sensitive Data");
}
if (id == "ID_5")
{
auto& child = node.second.get_child("<xmlattr>.value");
child.put_value("Sensitive Data");
}
在迭代时,您需要迭代foreach中没有const
的元素,因为您修改了项:
BOOST_FOREACH( boost::property_tree::ptree::value_type & node, pt1.get_child("Parameters"))
编辑
要删除空格,您可以使用property_tree::xml_parser::trim_whitespace
作为
输入read_xml
:
boost::property_tree::read_xml(ss, pt1, boost::property_tree::xml_parser::trim_whitespace);