标签:except pre style for string getjson div size AC
import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONException; //获取数据库数据 Object dataCount = vars.getObject("result"); String dataCount_str = dataCount.toString(); JSONArray list = JSON.parseArray(dataCount_str.replace("=",":")); JSONArray detailList = new JSONArray(); for (int i = 0; i < list.size(); i++) { JSONObject object = list.getJSONObject(i); // 添加键值对 object.put("entryNum",12); object.put("entrySmallNum",object.getInteger("small_large_package_ratio")-1); object.put("smallLargePackageRatio",object.getInteger("small_large_package_ratio")); object.put("medicationId",object.getInteger("medication_id")); //去掉多余的键值对 object.remove("chest_id"); object.remove("chest_nature"); object.remove("small_large_package_ratio"); object.remove("medication_id"); detailList.add(object); } log.info(detailList.toString()); vars.put("detailList",detailList.toString());
Jmeter-BeanShell断言:将数据库结果封装成list作为参数
标签:except pre style for string getjson div size AC
原文地址:https://www.cnblogs.com/rechin/p/9237840.html