JSON-C

//----------------------------------------------------//AUTHOR: lanyang123456//DATE: 2014-12-13//----------------------------------------------------json-c介绍与库下载请参考https://github.com/json-c/json-c/wiki[cpp] view plain copy
#include 
  
  
   
     
    #include 
   
   
    
      
      
    void test_jsonc()  
    {  
      
        struct json_object *infor_object = NULL;  
        infor_object = json_object_new_object();  
        if (NULL == infor_object)  
        {  
            printf("new json object failed.\n");  
            return;  
        }  
      
        struct json_object *para_object = NULL;  
        para_object = json_object_new_object();  
        if (NULL == para_object)  
        {  
            json_object_put(infor_object);//free  
            printf("new json object failed.\n");  
            return;  
        }  
      
        struct json_object *array_object = NULL;  
        array_object = json_object_new_array();  
        if (NULL == array_object)  
        {  
            json_object_put(infor_object);//free  
            json_object_put(para_object);//free  
            printf("new json object failed.\n");  
            return;  
        }  
      
        /*添加json值类型到数组中*/  
        json_object_array_add(array_object, json_object_new_int(256));  
        json_object_array_add(array_object, json_object_new_int(257));  
        json_object_array_add(array_object, json_object_new_int(258));  
      
        json_object_object_add(para_object, "DeviceId", json_object_new_string("sn_iso_9000"));  
        json_object_object_add(para_object, "MacAddr", json_object_new_string("AA:BB:CC:DD:EE:FF"));  
        json_object_object_add(para_object, "Visible", json_object_new_int(1));  
      
        /*添加json名称和值到json对象集合中*/  
        json_object_object_add(infor_object, "method", json_object_new_string("GetSystemInfo"));  
        json_object_object_add(infor_object, "param", para_object);  
        json_object_object_add(infor_object, "id", json_object_new_string("101"));  
      
        /*添加数组集合到json对象中*/  
        json_object_object_add(infor_object, "array", array_object);  
      
        printf("-----------json infor ---------------------------\n");  
        printf("%s\n", json_object_to_json_string(infor_object));  
        printf("-----------json infor ---------------------------\n");  
      
        struct json_object *result_object = NULL;  
      
      
        result_object =  json_object_object_get(infor_object, "method");  
        printf("-----------result_object method ---------------------------\n");  
        printf("%s\n", json_object_to_json_string(result_object));  
        printf("-----------result_object method---------------------------\n");  
      
        result_object =  json_object_object_get(infor_object, "param");  
        printf("-----------result_object param ---------------------------\n");  
        printf("%s\n", json_object_to_json_string(result_object));  
        printf("-----------result_object param---------------------------\n");  
      
        result_object =  json_object_object_get(infor_object, "array");  
        printf("-----------result_object  array---------------------------\n");  
        printf("%s\n", json_object_to_json_string(result_object));  
        printf("-----------result_object array---------------------------\n");  
      
        int i;  
        for(i = 0; i < json_object_array_length(result_object); i++) {  
          struct json_object *obj = json_object_array_get_idx(result_object, i);  
          printf("\t[%d]=%s\n", i, json_object_to_json_string(obj));  
        }  
      
        json_object_put(infor_object);//free  
      
    }  
      
      
    int main(int argc, char *argv[])  
    {  
        test_jsonc();  
      
        return 0;  
    }  






编译与执行


$ gcc -o test1 test1.c -ljson
$ ./test1
-----------json infor ---------------------------
{ "method": "GetSystemInfo", "param": { "DeviceId": "sn_iso_9000", "MacAddr": "AA:BB:CC:DD:EE:FF", "Visible": 1 }, "id": "101", "array": [ 256, 257, 258 ] }
-----------json infor ---------------------------

-----------result_object method ---------------------------
"GetSystemInfo"
-----------result_object method---------------------------

-----------result_object param ---------------------------
{ "DeviceId": "sn_iso_9000", "MacAddr": "AA:BB:CC:DD:EE:FF", "Visible": 1 }
-----------result_object param---------------------------

-----------result_object  array---------------------------
[ 256, 257, 258 ]
-----------result_object array---------------------------
    [0]=256
    [1]=257
    [2]=258



   
   
  
  
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值