当测试接口时返回数据乱码解决方法:
1、找到线程组-http请求里面的 Content encoding,将其填写:UTF-8
注:此方法只能改一部分乱码的问题
2、改jmeter程序中的文件(这个还需要百度一下)
3、在线程组里面添加一个文件:BeanShell PostProcessor。然后在此文件的Script中写一句代码:prev.setDataEconding("UTF-8")
三种方法:
一、在Content encoding 写入utf-8
二、在Jmeter\bin路径下用记事本打开jmeter.properties文件
找到 #sampleresult.default.encoding=ISO-8859-1 在下一行添加这句话
sampleresult.default.encoding=UTF-8
三、线程组添加后置处理器
在Script输入 pre.setDateEncofing("utf-8")