json_object_is_type is used to check whether the type of the json object is same as that of the specified type. So you can easily guess that the function takes two arguments
#include <json/json.h> #include <stdio.h> int main() { char * string = "{"sitename" : "joys of programming", "tags" : [ "c" , "c++", "java", "PHP" ], "author-details": { "name" : "Joys of Programming", "Number of Posts" : 10 } }"; json_object * jobj = json_tokener_parse(string); enum json_type type; json_object_object_foreach(jobj, key, val) { printf("type: ",type); if (json_object_is_type(val, json_type_null)) { printf("json_type_nulln"); } if (json_object_is_type(val, json_type_boolean)) { printf("json_type_booleann"); } if (json_object_is_type(val, json_type_double)) { printf("json_type_doublen"); } if (json_object_is_type(val, json_type_int)) { printf("json_type_intn"); } if (json_object_is_type(val, json_type_object)) { printf("json_type_objectn"); } if (json_object_is_type(val, json_type_array)) { printf("json_type_arrayn"); } if (json_object_is_type(val, json_type_string)) { printf("json_type_stringn"); } } }
The output of the program is something like this
type: json_type_string type: json_type_array type: json_type_object
The input to the program is
{ "sitename" : "joys of programming", "tags" : [ "c" , "c++", "java", "PHP" ], "author-details": { "name" : "Joys of Programming", "Number of Posts" : 10 } }
static void checktype(struct json_object *new_obj, const char *field){struct json_object *o = field ? json_object_object_get(new_obj, field) : new_obj;printf("new_obj%s%-18s: %d,%d,%d,%d,%d,%d,%d\n",field ? "." : " ", field ? field : "",json_object_is_type(o, json_type_null),json_object_is_type(o, json_type_boolean),json_object_is_type(o, json_type_double),json_object_is_type(o, json_type_int),json_object_is_type(o, json_type_object),json_object_is_type(o, json_type_array),json_object_is_type(o, json_type_string));}이런식으로 쓴다.json_object_is_type("변수", 데이터형) 결과는 참이면 1, 아니면 0 이렇게 나오는듯하다.if( ~ ) 속에 넣어서 썼다.
'Stupid Computer > 2. C 언어' 카테고리의 다른 글
[C/C++] Class 사용, 은행 계좌 개설 및 입금, 출금 예제 ! (코드 첨부 ) (0) | 2014.05.28 |
---|---|
[C/C++] Enum 사용법 , C언어 열거형 사용법 열거형(Enum) (0) | 2014.05.19 |
[C/C++] #ifdef 사용법 ! ifdef, endif 사용법 !! 모드 전환 ! (0) | 2014.05.08 |
[C/C++] Menu 화면 구성 ! if else if ~ ( 메뉴 10개 이상 넘어갈때 ) (0) | 2014.04.24 |
[C/C++] switch case문 10개 이상 만들기 ! (0) | 2014.03.24 |
[C/C++/리눅스/자바] Json 사용법 및 사용예제 (0) | 2014.02.28 |
[C/C++] 기본! 컴파일과 빌드~ 차이점 (0) | 2014.02.28 |
[링크에러 LNK2019] C++에서 C 함수 사용하기 (0) | 2014.02.26 |
main(int argc, char* argv) 컴파일 옵션 사용 하는 예제 (0) | 2014.02.24 |
윈7에서 비쥬얼 스튜디오 환경변수 설정!!(변수추가) (0) | 2013.06.30 |