content为 {“code”:200,“msg”:“”,“errorDetail”:null,“data”:[{“objState”:“N”,“id”:5,“name”:“测试空格”,“memo”:“”,“type”:0,“inputcode”:“cskg”,“state”:1,“cempId”:1,“ctime”:“2023-07-10 15:19:47”,“uempId”:1,“utime”:“2023-07-10 15:19:47”,“cempName”:“admin”,“uempName”:“admin”}
代码为
JSONObject jsonObject = JSONObject.fromObject(content);
JSONArray dataArray = jsonObject.getJSONArray(“data”)
log.info( dataArray);
导入的jar包为? json jar和jsonlib jar? 结果无效
// import net.sf.json.JSONArray;
// import net.sf.json.JSONObject;
// import net.sf.json.*;
// import org.json.*;
// import org.json.JSONObject;
?
import com.alibaba.fastjson.JSONArray; //数组
import com.alibaba.fastjson.JSONObject;
解决办法:
参考这个使用fastjson
使用 beanshell 脚本解析 JSON 返回结果总结 - FIT2CLOUD 知识库
meterspheere 包导入需要fastjson jar包? ?下载连接
fastjson java对象 fastjson jar_gulaotou的技术博客_51CTO博客
?