打开apache-jmeter-xxx\bin\jmeter.properties文件,搜索"encoding"关键字,找到如下配置: # The encoding to be used if none is provided (default ISO-8859-1)#sampleresult.default.encoding=ISO-8859-1 将注释删掉,并改成utf-8编码,即: The encoding to be used if none is provided (defa
问题分析: 请求响应数据出现中文时,通过查看jemter的察看结果树中的响应数据信息,出现乱码.经过查看jemter的配置文件jmeter.properties发现其默认字符集编码为ISO-8859-1 解决方法: ①修改配置文件: 将jmeter.properties中的sampleresult.default.encoding=ISO-8859-1修改为sampleresult.default.encoding=utf-8 并且去掉注释# # The encoding to be used
打开jmeter下的目录:\bin\jmeter.properties文件,搜索“encoding”关键字,找到如下配置: # The encoding to be used if none is provided (defaultISO-8859-1) #sampleresult.default.encoding=ISO-8859-1 将#sampleresult.default.encoding=ISO-8859-1注释删掉,把ISO-8859-1改为utf-8,即 sampleresult
问题分析 当响应数据或响应页面没有设置编码时,jmeter会按照jmeter.properties文件中,sampleresult.default.encoding设置的格式解析 默认ISO-8859-1,解析中文肯定出错 # The encoding to be used if none is provided (default ISO-8859-1) #sampleresult.default.encoding=ISO-8859-1 例子:某请求响应数据编码为UTF-8,通过“查看结果树”看