IT/안드로이드+JAVA

[안드로이드] JSONObject, JSONArray JSON오브젝트

안경 쓴 귀니 2016. 8. 2. 16:55
반응형



[안드로이드] JSONObject, JSONArray, JSON오브젝트



jObj1 = new JSONObject(sb1.toString());
jObj2 = jObj1.getJSONObject("hello");
jObj3 = new JSONObject(jObj2.toString());
jObj4 = jObj3.getJSONObject("body");
jObj5 = new JSONObject(jObj4.toString());
jObj6 = jObj5.getJSONObject("items");
jArr = jObj6.getJSONArray("item");

위 코드랑 아래 코드랑 같은 내용이다.

위에는 헷갈리지 않고

아래는 간략하다.

jObj2 = new JSONObject(sb1.toString()).getJSONObject("response");
jObj4 = new JSONObject(jObj2.toString()).getJSONObject("body");
jObj6 = new JSONObject(jObj4.toString()).getJSONObject("items");
jArr = jObj6.getJSONArray("item");





반응형