本文主要是介绍VS 2008 jsoncpp的配置及使用实例,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
C++中使用Jsoncpp
1、Jsoncpp的配置
下载jsoncpp-src-0.5.0.tar.gz的源码,然后编译(使用VS 2008)
2、编译之后得到lib与include中的所有文件,这里已经编译好了,下载地址:http://download.csdn.net/detail/u011269801/9482712
3、新建一个VS 2008的控制台工程
将lib与include放在工程下,然后配置工程的属性,C/C++->常规;链接器->常规 ;链接器->输入;
测试实例:
#include "stdafx.h"
#include "json.h"
#include <string>
#include <iostream>
using namespace std;
void writeJson()
{
Json::Value root;
Json::Value arrayObj;
Json::Value item;
item["cpp"] = "jsoncpp";
item["java"] = "jsoninjava";
item["php"] = "support";
arrayObj.append(item);
root["name"] = "json";
root["array"] = arrayObj;
root.toStyledString();
std::string out = root.toStyledString();
std::cout << out << std::endl;
}
void readJson() {
using namespace std;
std::string strValue = "{\"name\":\"json\",\"array\":[{\"cpp\":\"jsoncpp\"},{\"java\":\"jsoninjava\"},{\"php\":\"support\"}]}";
Json::Reader reader;
Json::Value value;
if (reader.parse(strValue, value))
{
std::string out = value["name"].asString();
std::cout << out << std::endl;
const Json::Value arrayObj = value["array"];
for (unsigned int i = 0; i < arrayObj.size(); i++)
{
if (!arrayObj[i].isMember("cpp"))
continue;
out = arrayObj[i]["cpp"].asString();
std::cout << out;
if (i != (arrayObj.size() - 1))
std::cout << std::endl;
}
}
}
int _tmain(int argc, _TCHAR* argv[])
{
readJson();
//writeJson();
return 0;
}
这篇关于VS 2008 jsoncpp的配置及使用实例的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!