json
文章平均质量分 67
吴风斌
这个作者很懒,什么都没留下…
展开
-
JSONObject、JSONArray
原创地址http://blog.csdn.net/lishuangzhe7047/article/details/28880009 [ {name1:{name2:{name3:'value1'},{name4:value2}}},{} ] 取出name4值过程步骤:1,将以上字符串转换为JSONArray对象;2,取出对象的第一项,JSONObject对象;3,取出转载 2016-08-23 16:29:59 · 369 阅读 · 0 评论 -
JSONArray JSONObjec
public class JsonTest { private static JSONObject createJSONObject(){ JSONObject jsonObject = new JSONObject(); jsonObject.put("username","liming"); jsonObject.put("sex","男"); jsonObject.p原创 2016-08-26 10:41:00 · 259 阅读 · 0 评论 -
jsonArrayAndJsonObject
@Test public void jsonArrayAndJsonObject(){ //定义json对象和数组 JSONObject jsonObject = new JSONObject(); JSONObject jsonObject2 = new JSONObject(); JSONObject jsonObject3 = new JSONObject(); JSO原创 2016-08-26 10:57:02 · 312 阅读 · 0 评论