您的位置:首页 > 文旅 > 旅游 > 网络舆情工作流程的六个步骤_h5游戏是什么意思_销售培训课程_网站创建流程

网络舆情工作流程的六个步骤_h5游戏是什么意思_销售培训课程_网站创建流程

2024/12/26 3:04:31 来源:https://blog.csdn.net/u010378984/article/details/143512040  浏览:    关键词:网络舆情工作流程的六个步骤_h5游戏是什么意思_销售培训课程_网站创建流程
网络舆情工作流程的六个步骤_h5游戏是什么意思_销售培训课程_网站创建流程

导入数据

  • 输入表格格式如下

  • 创建CSV Data Set Config

  • 在Body Data中调用
{
"username": "${email}",
"password": "123456",
"client_id": "00bb9dbfc67439a5d42e0e19f448c7de310df4c7fcde6feb5bd95c6fac5a5afc",
"scope": "all",
"react_app_request": true
}

导出数据

  • 创建BeanShell PostProcessor
    • 一般数据来源是接口的response内容
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;import com.csvreader.CsvReader;
import com.csvreader.CsvWriter;
import org.json.JSONObject;
import org.json.JSONArray;String response=prev.getResponseDataAsString();//取出接口的返回消息
JSONObject jsonstring=new JSONObject(response);//放进json对象里String token=jsonstring.getString("refresh_token");
String email=jsonstring.getJSONObject("profile").getString("email");
String type=jsonstring.getString("user_type");
String school=jsonstring.getJSONObject("profile").getJSONObject("school").getString("name");
token = "Bearer " + tokenString outputFile = "E:/Software/JMeter/tokenInfo.csv";
// before we open the file check to see if it already exists
boolean alreadyExists = new File(outputFile).exists();try {// use FileWriter constructor that specifies open for appendingCsvWriter csvOutput = new CsvWriter(new FileWriter(outputFile, true), ',');// if the file didn't already exist then we need to write out the header lineif (!alreadyExists){csvOutput.write("Email");csvOutput.write("Token");csvOutput.write("Type");csvOutput.write("School");csvOutput.endRecord();}// else assume that the file already has the correct header line// write out a few recordscsvOutput.write(email);csvOutput.write(token);csvOutput.write(type);csvOutput.write(school);csvOutput.endRecord();csvOutput.close();
} catch (IOException e) {e.printStackTrace();
}

备注:可以创建一个Debug PostProcessor进行调试代码

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com