1//添加三角形信息2cJSON_AddItemToObject(resultObj,"meshes", meshesArrayObj =cJSON_CreateArray());34//cJSON* mesheObj=cJSON_CreateObject();5//mesheObj = meshesArrayObj->child;67cJSON* pointTempObj1, * pointTempObj2, *pointTempObj3;89for(unsignedinti =0; i < triangleVertex.size();...
cJSON的使用记录 2019-12-03 14:11 −最近用到c语言对json的解析,用来处理收发报文。 做一个使用记录。 c语言有第三方的封装接口,就是cJSON,将对应的.h文件加入到自己的代码中,编译时加上.c文件编译。 #include <iostream> #include <string.h> #i... ...