码迷,mamicode.com
首页 > Web开发 > 详细

JSON与对象的转换-JSONObject.fromObject

时间:2019-10-25 11:40:12      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:有一个   print   div   string   alt   对象   zhang   int   from   

使用JSONObject.fromObject把字符串转化为json

例如:有一个json格式的字符串,然后通过JSONObject.fromObject把字符串转化为json,然后获取值。代码如下:

String d="{\"username\":\"zhangsan\",\"password\":\"zhangsan\"}";
JSONObject json4=JSONObject.fromObject(d);
System.out.println(json4);
System.out.println(json4.optString("username"));

输出的结果为:

技术图片

 

 

 

注意:还有一种情况也是可以转化的,如下代码的字符串e所示,这个字符串并不是一个json格式的字符串,但也可以转化成json

String d="{\"username\":\"zhangsan\",\"password\":\"zhangsan\"}";
JSONObject json4=JSONObject.fromObject(d);
String e="{\"username\"=\"lisi\",\"password\"=\"lisi\"}";
JSONObject json5=JSONObject.fromObject(e);
System.out.println(json4);
System.out.println(json4.optString("username"));
System.out.println(json5);

输出结果为:

技术图片

 

JSON与对象的转换-JSONObject.fromObject

标签:有一个   print   div   string   alt   对象   zhang   int   from   

原文地址:https://www.cnblogs.com/masha2017/p/11737062.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!