乱码
jmeter录制的脚本请求的消息体数据和察看结果树的数据出现乱码
解决乱码
有多种方法,可以选择试试,一二修改配置文件,需要重启,三四修改脚本编码,不需要重启
一、修改sampleresult.default.encoding
1、在配置文件jmeter.properties里,进入jmeter安装路径的bin目录下,找到文件jmeter.properties,打开
2、可以直接修改#sampleresult.default.encoding=ISO-8859-1,把前面的注释符#去掉 ,并把ISO-8859-1改成UTF-8,或者在#sampleresult.default.encoding=ISO-8859-1下添加:sampleresult.default.encoding=UTF-8,保存
3、重启jmeter
二、修改jsyntaxtextarea.font.family
1、在配置文件jmeter.properties里,进入jmeter安装路径的bin目录下,找到文件jmeter.properties,打开
2、找到jsyntaxtextarea.font.family=Hack,去掉前面的注释符#,保存
3、重启jmeter
三、修改Content encoding
修改每个请求的内容编码Content encoding,改为“UTF-8”,不需要重启jmeter
四、添加BeanShell 后置处理程序
在线程组右键添加后置处理器—BeanShell 后置处理程序,脚本处输入:prev.setDataEncoding(“utf-8”);,修改数据编码格式为utf-8,不需要重启jmeter