cjson库打包数据实现方法

使用 cJson 库,在C语言环境下,打包一个cJson字符串:

int CreateArryJsonString(void)
{
    cJSON *cJsonArr = cJSON_CreateArray();

    cJSON *sJsonObj1 = cJSON_CreateObject();
    cJSON_AddStringToObject(sJsonObj1, "test1", "test1");
    cJSON_AddStringToObject(sJsonObj1, "test11", "test1");

    cJSON *sJsonObj2 = cJSON_CreateObject();
    cJSON_AddStringToObject(sJsonObj2, "test2", "test2");
    cJSON_AddStringToObject(sJsonObj2, "test21", "test21");

    cJSON_AddItemToArray(cJsonArr, sJsonObj1);
    cJSON_AddItemToArray(cJsonArr, sJsonObj2);

    cJSON *pJson;
    pJson = cJSON_CreateObject();
    cJSON_AddItemToObject(pJson, "context", cJsonArr);

    char *pJsonSubData;
    pJsonSubData = cJSON_Print(pJson);
    cJSON_Minify(pJsonSubData);

    printf("test arry cjson string: %s \n", pJsonSubData);

    cJSON_Delete(cJsonArr);
    cJSON_Delete(pJson);
    free(sJsonObj1);
    free(sJsonObj2);

    return 1;
}

int main(void)
{
    int iRet = 0;

    printf("====> cJson Arry test start\n");
    iRet = CreateArryJsonString();
    printf("====> cJson Arry test end\n");

    return iRet;
}

打印信息
在这里插入图片描述

你可能感兴趣的:(嵌入式,step,by,step,IOT,c语言)