2011-08-25 8 views

답변

8

이 시도 :

JSONArray jArrayObject = new JSONArray(); 
jArrayObject.put(getJsonObject()); 

private static JSONObject getJsonObject() throws JSONException { 
    JSONObject jObject = new JSONObject(); 
    //put value jObject here.. 
} 
관련 문제