首页 > Web开发 > 详细

JSONObject简单测试使用

时间:2016-08-24 17:38:20      阅读:224      评论:0      收藏:0      [点我收藏+]


String str = "{‘status‘:1,‘message‘:‘制作证书成功‘,‘data‘:{‘userId‘:‘‘,‘buf‘:‘‘,‘bufP7‘:‘‘,‘certDn‘:‘‘,‘certSn‘:‘‘,‘issuerDn‘:‘‘,‘startTime‘:‘‘,‘endTime‘:‘‘}";

JSONObject j = new JSONObject();

HashMap<String, String> map = new HashMap<String, String>();

map.put("map1", "map1");

map.put("map2", "map2");

map.put("map3", "map3");

j.put("files", map);

j.put("test", "test");

j.put("test1", "test1");

System.out.println(j.toString());

String str1 = j.toString();

JSONObject json = JSONObject.fromObject(str1);

System.out.println(json.get("files"));

JSONObject j2 = JSONObject.fromObject(json.get("files"));

System.out.println(j2.get("map1"));

输出结果:


{"files":{"map3":"map3","map2":"map2","map1":"map1"},"test":"test","test1":"test1"}

{"map3":"map3","map2":"map2","map1":"map1"}

map1

JSONObject简单测试使用

原文:http://yjm199.blog.51cto.com/4408395/1842005

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!