Talkson C++的JSON操作库

程序名称:Talkson

授权协议: Apache

操作系统: Windows

开发语言: C/C++

Talkson 介绍

Talkson 是一个 C++ 库,包含 JSON 消息的编码和解码模块。是一个简单、轻量级的 JSON 解析器,无需依赖外部库,支持流数据解析。

将对象转成 JSON 字符串的示例代码

// create a JSON value. This example uses the root object of the above example.
....

// serialize
JSONObjectSerializer encoder;

if( root->type == JSONValue::Object )
{
        pos = 0;
        encoder.open( root );
        while( (pos = encoder.encode( buf, BUF_SIZE )) > 0 )
                printf( "%.*s", pos, buf );
}
else if( root->type == JSONValue::Array )
{
        pos = 0;
        JSONArraySerializer encoder;
        encoder.open( root );
        while( (pos = encoder.encode( buf, BUF_SIZE )) > 0 )
                printf( "%.*s", pos, buf );
}

delete root;

Talkson 官网

http://code.google.com/p/talkson/

相关编程语言

MuPlayer 是一款跨平台、轻量级的音频播放解决方案,...
OS FLV 是一个 开源和可嵌入网页的flv播放器。 这个...
DewPlayer音乐播放器,样式很简单,而且很实用.播放器...
JW FLV MEDIA PLAYER是一个开源的在网页上使用的Fla...
Speakker 是一个基于 Web 浏览器的音乐播放器,只提...
Player Framework 是一个开源的支持 HTML5 的视频播...