私はcJSONを使用していますが、どういうわけか文字列を機能させることができません:
void myfile()
{
cJSON* type = NULL;
char text1[]="{\n\"name\": \"Jack (\\\"Bee\\\") Nimble\", \n\"format\": {\"type\": \"rect\", \n\"width\": 1920, \n\"height\": 1080, \n\"interlace\": false,\"frame rate\": 24\n}\n}";
cJSON * root = cJSON_Parse(text);
cJSON * format = cJSON_GetObjectItem(root,"format");
int framerate = cJSON_GetObjectItem(format,"frame rate")->valueint;
type = cJSON_GetObjectItem(format,"type")->valuestring;
char * rendered = cJSON_Print(root);
cJSON_Delete(root);
printf("rate = %d, type = %s \n", framerate, type) ;
}
ゴミしか出ません。私もこれを試しましたが、コンパイルさえしませんでした:
char *type[] = cJSON_GetObjectItem(format,"type")->valuestring;