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

Jmeter BeanShell PostProcessor提取json数据

时间:2019-02-10 23:37:07      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:name   print   splay   lock   RoCE   ESS   pre   result   提取   

需求:提取sample返回json数据中所有name字段值,返回的json格式如下: 
{“body”:{“apps”:[{“name”:”111”},{“name”:”222”}]}} 
jmeter中添加后置处理器BeanShell PostProcessor 
技术图片 
技术图片

技术图片
import org.json.*;

String response_data = prev.getResponseDataAsString();
JSONObject data_obj = new JSONObject(response_data);
String apps_str = data_obj.get("body").get("apps").toString();
JSONArray apps_array = new JSONArray(apps_str);
String[] result = new String[apps_array.length()];
for(int i=0;i<apps_array.length();i++){
    JSONObject app_obj = new JSONObject(apps_array.get(i).toString());
    String name = app_obj.get("name").toString();
    result[i] = name;
}
vars.put("result", Arrays.toString(result));
View Code

 

 
 

Jmeter BeanShell PostProcessor提取json数据

标签:name   print   splay   lock   RoCE   ESS   pre   result   提取   

原文地址:https://www.cnblogs.com/a00ium/p/10360446.html

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