世界上最好的c++ json解析器


url:    https://github.com/button-chen/tinyjson

使用只需包含一个头文件(header only).

读取相当复杂的json,也很简单。

#include 
#include 
#include 
#include "tinyjson.hpp"
using namespace std;
using namespace tiny;

string jsonstring = "\
{\
	\"name\":\"zhangsan\",\
	\"age\" : 26,\
	\"data\" : [\
	{\
		\"one\":\"chenone\",\
		\"two\" : {\
			\"love1\":\"2233\",\
			\"love2\":44444\
		}\
	}\
  ]\
}\
";

void TEST1() {
	TinyJson json;
	json.ReadJson(jsonstring);

	string name = json.Get("name");
	int age = json.Get("age");

	xarray data = json.Get("data");
	for (int i = 0; i < data.Count(); i++) {
		data.Enter(i);
		string one = data.Get("one");
		xobject two = data.Get("two");
		for (int ii = 0; ii < two.Count(); ii++) {
			two.Enter(ii);
			string love1 = two.Get("love1");
			int love2 = two.Get("love2");
		}
	}
}

你可能感兴趣的:(cpp)