jsoncpp vc2005 编译测试

新建一个vc8 win32 控制台程序

使用多字节字符

包含jsoncpp_src_0_5_0/src/lib_json 下的所有代码到工程中

引用jsoncpp_src_0_5_0/include/json/json.h

编写如下代码

// test_jsoncpp_vc8.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>

#include "../../include/json/json.h"
int _tmain(int argc,_TCHAR* argv[])
{
std::string doc;
doc = "{ /"encoding/" : /"UTF-8/" }";

Json::Value root; // will contains the root value after parsing.
Json::Reader reader;
bool parsingSuccessful = reader.parse( doc,root );
if ( !parsingSuccessful )
{
// report to the user the failure and their locations in the document.
std::cout << "Failed to parse configuration/n"
<< reader.getFormatedErrorMessages();
return 0;
}

// Get the value of the member of root named 'encoding',return 'UTF-8' if there is no
// such member.
std::string encoding;
encoding = root.get("encoding","UTF-8" ).asstring();

// Get the value of the member of root named 'encoding',return a 'null' value if
// there is no such member.
/*
const Json::Value plugins = root["plug-ins"];
for ( int index = 0; index < plugins.size(); ++index ) // Iterates over the sequence elements.
loadplugIn( plugins[index].asstring() );

setIndentLength( root["indent"].get("length",3).asInt() );
setIndentUseSpace( root["indent"].get("use_space",true).asBool() );
*/
// ...
// At application shutdown to make the new configuration document:
// Since Json::Value has implicit constructor for all value types,it is not
// necessary to explicitly construct the Json::Value object:
root["encoding"] = "GB2312";
root["indent"]["length"] = 2;
root["indent"]["use_space"] = 5;

Json::StyledWriter writer;
// Make a new JSON document for the configuration. Preserve original comments.
std::string outputConfig = writer.write( root );

// You can also use streams. This will put the contents of any JSON
// stream at a particular sub-value,if you'd like.
//std::cin >> root["subtree"];
root["subtree"] = "日";

// And you can write to a stream,using the StyledWriter automatically.
std::cout << root;
getchar();


return 0;
}

运行结果:

{ "encoding" : "GB2312","indent" : { "length" : 2,"use_space" : 5 },"subtree" : "日"}

相关文章

AJAX是一种基于JavaScript和XML的技术,能够使网页实现异步交...
在网页开发中,我们常常需要通过Ajax从后端获取数据并在页面...
在前端开发中,经常需要循环JSON对象数组进行数据操作。使用...
AJAX(Asynchronous JavaScript and XML)是一种用于创建 We...
AJAX技术被广泛应用于现代Web开发,它可以在无需重新加载页面...
Ajax是一种通过JavaScript和HTTP请求交互的技术,可以实现无...