前提条件:
1)String的格式是map或json类型的 ;
2)在JAVA中使用JSON需要引入 org.json 包
String 转Json
JSONObject jasonObject = JSONObject.fromObject(str);
String 转Map
JSONObject jasonObject = JSONObject.fromObject(str); Map map = (Map)jasonObject;
参考资料:
JSON API:http://json.org/javadoc/org/json/JSONObject.html
时间: 2024-10-08 06:23:08