OS/안드로이드 (1) 썸네일형 리스트형 공공데이터 json 파싱 String s; tourists = new ArrayList(); try{ // MYURL.test_json : json 문자열 Log.d(TAG,"응답: "+s); JSONObject jsonObject = new JSONObject(s); JSONObject response = jsonObject.getJSONObject("response"); JSONObject body = response.getJSONObject("body"); int totalCount = body.getInt("totalCount"); Log.d(TAG,"totalCount: "+totalCount); JSONObject items = body.getJSONObject("items"); JSONArray item = (JSO.. 이전 1 다음