我的問題與此問題有關:Boost property_tree: multiple values per key並針對該問題後面的問題:Boost property_tree: multiple values per key, on a template class。Boost :: property_tree:在XML解析器中使用std :: vector <>將多個值存儲在一個密鑰中
我想解析一個XML文件,其中多個值使用std::vector<>
在單個鍵值處列出。下面的代碼是我迄今實施:
#include <boost/optional.hpp>
#include <boost/property_tree/xml_parser.hpp>
namespace boost { namespace property_tree
{
template<typename type>
struct vector_xml_translator
{
boost::optional<std::vector<type> > get_value(const std::string& str)
{
if (!str.empty())
{
std::vector<type> values;
std::stringstream ss(str);
while (ss)
{
type temp_value;
ss >> temp_value;
values.push_back(temp_value);
}
return boost::optional<std::vector<type> >(values);
}
else
{
return boost::optional<std::vector<type> >(boost::none);
}
}
boost::optional<std::string> put_value(const std::vector<type>& b)
{
std::stringstream ss;
for (unsigned int i = 0; i < b.size(); i++)
{
ss << b[i];
if (i != b.size()-1)
{
ss << " ";
}
}
return boost::optional<std::string>(ss.str());
}
};
template<typename ch, typename traits, typename alloc, typename data_type>
struct translator_between<std::basic_string<ch, traits, alloc>, std::vector<data_type> >
{
typedef vector_xml_translator<data_type> type;
};
} // namespace property_tree
} // namespace boost
小例子來測試這個代碼如下:
#include <fstream>
#include <iostream>
#include <boost/property_tree/ptree.hpp>
#include <XML_Vector_Translator.hpp>
int main()
{
using boost::property_tree::ptree;
std::vector<double> test_vector;
test_vector.push_back(1);
test_vector.push_back(6);
test_vector.push_back(3);
ptree pt;
pt.add("base", test_vector);
std::ofstream os("test_file.xml");
write_xml(os, pt, boost::property_tree::xml_writer_settings<std::string>(' ', 2));
std::ifstream is("test_file.xml");
ptree pt_2;
read_xml(is, pt_2);
std::vector<int> test_vector_2;
test_vector_2 = pt_2.get<std::vector<int> >("base");
for (unsigned int i = 0; i < test_vector_2.size(); i++)
{
std::cout << test_vector_2[i] << std::endl;
}
return 0;
}
當我運行這段代碼,我得到了一些錯誤,從而導致我相信翻譯結構的註冊是不正確的。有沒有人知道如何解決這個問題和/或改進這些代碼?
感謝這個非常明確和有用的答案 – Sjonnie
Graag gedaan。 Blij dat het hielp! – sehe