java解析複雜json:JSONObject 和 JSONArray的使用

在正式解析以前,咱們須要下載解析Json所須要的jar包,一共有7個。java

下載地址以下:https://download.csdn.net/download/zai_xia/10374080json

你們也能夠自行找資源下載。數組

而後將這些Jar包 Build Path 進項目就行了。session

特別注意:commons-collections這個jar包要用3.x版本的,不能用4.x版本;commons-lang這個jar包要用2.x版本的,不能用3.x版本的。ui

咱們的目的是解析下面這樣的json內容:spa

 

{ "data":{ "items":[ { "itemstring":"手機", "itemcoord":{"x":0,"y":100,"width":40,"height":20}, } ], "session_id":"", }, "code":0, "message":"OK" }

代碼以下:.net

package format; import net.sf.json.*; public class ResolveJson { public static void main(String[] args) { String json = "{\"data\":{\"items\":[{\"itemstring\":\"手機\",\"itemcoord\":{\"x\":0,\"y\":100,\"width\":40,\"height\":20},}],\"session_id\":\"\",},\"code\":0,\"message\":\"OK\"}"; JSONObject jsonObject = JSONObject.fromObject(json); JSONObject data = jsonObject.getJSONObject("data"); JSONArray items = jsonObject.getJSONObject("data").getJSONArray("items"); JSONObject row = null; for(int i=0; i<items.size(); i++){ row = items.getJSONObject(i); System.out.println("itemstring :" + row.get("itemstring")); JSONObject itemcoord = row.getJSONObject("itemcoord"); System.out.println("x:" + itemcoord.get("x")); System.out.println("y:" + itemcoord.get("y")); System.out.println("width:" + itemcoord.get("width")); System.out.println("height:" + itemcoord.get("height")); } System.out.println("session_id:" + data.get("session_id")); System.out.println("code:" + jsonObject.get("code")); System.out.println("code:" + jsonObject.get("message")); } }

運行結果:3d

其實解析過程就是將json看狀況轉換成JSONObject對象或JSONArray數組,再進行下一步處理,最終獲得目的值。code

相關文章
相關標籤/搜索