JSON.simple是一个简单的Java类库,用于解析和生成JSON文本。不依赖于其它类库,性能高。
示例代码:
System.out.println("=======decode======="); Strings="[0,{\"1\":{\"2\":{\"3\":{\"4\":[5,{\"6\":7}]}}}}]"; Objectobj=JSONValue.parse(s); JSONArrayarray=(JSONArray)obj; System.out.println("======the2ndelementofarray======"); System.out.println(array.get(1)); System.out.println(); JSONObjectobj2=(JSONObject)array.get(1); System.out.println("======field\"1\"=========="); System.out.println(obj2.get("1")); s="{}"; obj=JSONValue.parse(s); System.out.println(obj); s="[5,]"; obj=JSONValue.parse(s); System.out.println(obj); s="[5,,2]"; obj=JSONValue.parse(s); System.out.println(obj);
评论