赞
踩
JSONObject:必须是 “{ ”开头 / JSONArray:必须是 “[ ”开头
以{}开头使用JSONObject.fromObject(“json数据”),将json数据转为java对象、
以[ ]开头使用JSONArray.fromObject(“json数据”),将json数据转为java数组
1 、String str = "{\"id\":\"1234\",\"name\":\"xiaoming\",\"sex\":\"boy\"}";
json字符串转JSONObject a: JSONObject jsonObject = new JSONObject(str);
b:JSONObject jsonObject = JSONObject.fromObject(str);
c:JSONObj
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。