json_object_get_string(obj_states)可以直接赋值判断吗
时间: 2023-12-09 15:06:32 浏览: 116
不可以直接赋值判断。json_object_get_string(obj_states)是用于获取JSON对象中某个键对应的值的字符串表示。若要进行比较操作,需要将其赋值给一个字符串变量,然后使用字符串比较函数进行比较。例如:
```
char* str_states = json_object_get_string(obj_states);
if(strcmp(str_states, "active") == 0) {
// do something
}
```
相关问题
//从json str中取值,type,0:char;other:int int GetStrInBuf_x( char *json_str, char *Keygroup, char* Keyname,char *KeyVal, int type) { char buf[512] = {0}; char buf1[512] = {0}; FILE *fp; char docat[128] = {0}; long profilelen; printf("input1:%s %s %s\n", json_str, Keygroup, Keyname); struct json_object* json_obj = json_tokener_parse(json_str); const char* json_s = json_object_to_json_string(json_obj); printf("ss%s\n", json_s); struct json_object *person = json_object_object_get(json_obj, "data"); printf("ssss\n"); // printf("Age: %d\n", json_object_get_int(json_object_object_get(json_obj, "age"))); printf("p:%s\n", json_object_to_json_string(person)); memset(buf, 0x00, sizeof(buf)); if(type == 0) { strcpy(buf, json_object_get_string(json_object_object_get(person, Keyname))); if(strlen(buf) == 0) { memset(KeyVal, 0x00, sizeof(KeyVal)); } else{ snprintf(KeyVal, (strlen(buf)+1), "%s", buf); printf("name:%s,value_str:%s\n", Keyname, KeyVal); } } else { int str_value = json_object_get_int(json_object_object_get(person, Keyname)); sprintf(KeyVal,"%d", str_value); printf("name:%s,value_in:%s\n", Keyname, KeyVal); } memset(json_obj, 0x00, strlen(json_obj) + 1); json_object_put(json_obj); return 0; }
此函数可以实现从json字符串中取值,返回值为整型的时候可以取整型值,返回值为字符串的时候可以取字符串值。
该函数的具体实现过程如下:
1.调用json_tokener_parse函数将json字符串转换为json_object对象。
2.使用json_object_object_get函数获取json_object对象中指定键值(Keygroup)对应的值(person)。
3.使用json_object_object_get函数获取person对象中指定键值(Keyname)对应的值,并根据type参数的值判断返回的值是整型还是字符串类型。
4.将获取到的值存储到KeyVal参数中,并打印出来。
5.释放json_object对象的内存。
需要注意的是,在使用完json_object对象后,需要调用json_object_put函数释放该对象的内存,否则可能会出现内存泄漏的问题。
此外,由于该函数中使用了一些未定义的变量和函数,比如FILE *fp、long profilelen、memset等,因此需要在函数外部定义或使用已经定义过的变量和函数。
下面的代码哪里出现了段错误int GetStrInBuf( char *json_str, char *Keygroup, char* KeyName,char *KeyVal, int type) { char buf[512] = {0}; char buf1[512] = {0}; FILE *fp; char docat[128] = {0}; long profilelen; printf("in:%s\n",json_str); struct json_object* json_obj = json_tokener_parse(json_str); struct json_object *person = json_object_object_get(json_obj, "data"); strcpy(buf1, json_object_get_string(person)); printf("buf1:%s\n",buf1); // printf("Age: %d\n", json_object_get_int(json_object_object_get(json_obj, "age"))); memset(buf, 0x00, sizeof(buf)); if(type == 0) { strcpy(buf, json_object_get_string(json_object_object_get(person, KeyName))); if(strlen(buf) == 0) { memset(KeyVal, 0x00, sizeof(KeyVal)); } else{ snprintf(KeyVal, (strlen(buf)+1), "%s", buf); printf("name:%s,value_str:%s\n", KeyName, KeyVal); } } else { int str_value = json_object_get_int(json_object_object_get(person, "deviceId")); sprintf(KeyVal,"%d", str_value); printf("name:%s,value_in:%s\n", KeyName, KeyVal); } memset(json_obj, 0x00, strlen(json_obj) + 1); memset(person, 0x00, strlen(person) + 1); free(json_obj); free(person); json_object_put(json_obj); json_object_put(person); return 0; }
根据代码分析,很可能在执行 `json_object_put(json_obj)` 和 `json_object_put(person)` 时出现了段错误。这是因为 `json_object_put` 函数会释放对象占用的内存,而该段代码中的 `json_obj` 和 `person` 对象都已经被 `free` 释放掉了,再次调用 `json_object_put` 函数就会导致段错误。建议在释放内存前不要再调用 `json_object_put` 函数。
阅读全文