如何让json使用正确的数据类型

时间:2015-03-24 21:57:22

标签: c++ json boost boost-propertytree

当我put_value使用int时,它被写成字符串。有谁知道如何让它作为一个int打印?

#include <iostream>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>

using boost::property_tree::ptree;
using namespace std;

int main(int argc, char* argv[]) {

    ptree node;
    node.put("string", "text here");
    node.put("int", 1);//outputs as "1" and should be 1
    write_json(cout, node, false);//{"string":"text here","int":"1"}

    return 0;
}

1 个答案:

答案 0 :(得分:4)

图书馆明确表示不支持。

Boost Property Library尚未被命名为#34; Boost Json Library&#34;因为它不是JSON库。相反,它是一个属性树库(恰好使用 JSON子集用于其目的)。

来自documentation

  

属性树数据集未键入,并且不支持数组。因此,使用以下JSON /属性树映射:

     
      
  • JSON对象映射到节点。每个属性都是子节点。
  •   
  • JSON数组映射到节点。每个元素都是一个空名称的子节点。如果节点同时具有命名和未命名子节点,则无法将其映射到JSON表示。
  •   
  • JSON值映射到包含该值的节点。 然而,所有类型信息都丢失了;数字,以及文字&#34; null&#34;,&#34; true&#34;和&#34;假&#34;只是映射到他们的字符串形式。
  •   
  • 无法映射包含子节点和数据的属性树节点。
  •   

  

JSON往返,但类型信息丢失除外。