2012-02-29 158 views
0

我如何創建一個JSON數組一樣創建一個JSON字符串 -如何在黑莓

{"genres":[{"genre":[{"code":"CTY","name":"Country"}]},{"genre":[{"code":"HOP","name":"Hip Hop"}]}]} 

回答

2
JSONObject jArrayFacebookFriendsData = new JSONObject(); 

JSONObject jObjectData = new JSONObject(); 

try { 
     jObjectData.put("friend_name",name_); 
     jObjectData.put("friend_id", id_); 
     jObjectData.put("friend_email", "null"); 
     jObjectData.put("friend_phone", "null"); 
     jArrayFacebookFriendsData.accumulate("friends",jObjectData); 
    } 
    catch (JSONException e) { 
       // TODO Auto-generated catch block 
        e.printStackTrace(); 
        } 
4

下載JSON API從以下鏈接:通過使用

https://github.com/upictec/org.json.me/

創建JSON對象:

JSONObject obj=new JSONObject(); 

obj.put("key", value); 

這裏的值可能是任何原始類型String,int,boolean,長...

+0

如何將值的數組添加到json中? – Signare 2012-02-29 09:24:43