TA的每日心情 | 无聊 前天 09:05 |
---|
签到天数: 1050 天 连续签到: 1 天 [LV.10]测试总司令
|
【背景】
使用jmeter的小伙伴多多少少都会有遇见中文乱码的问题,主要有请求体中文乱码、响应报文的中文乱码以及文件上传的中文乱码。
【原因】
jmeter源码里默认的编码是ISO-8859-1。
【处理方法】
通过设置和修改源码两种主要方式来解决中文乱码问题。
处理方式一:
在HTTP请求控件指向UTF-8,解决请求中文乱码,如下图:
处理方式二:
在jmeter/bin路径下的jmeter.properties,第1098行,将默认的encoding=ISO-8859-1改为UTF-8,解决返回结果的中文乱码,如下:
- # The encoding to be used if none is provided (default ISO-8859-1)
- #sampleresult.default.encoding=ISO-8859-1
- sampleresult.default.encoding=UTF-8
复制代码
处理方式三:
在源码中进行强制修改,将默认的encoding改为UTF-8,解决所有的中文乱码问题。
1、在RequestViewHTTP类中将CHARSET_DECODE赋值为UTF-8,RequestViewHTTP在“\src\protocol\http\src\main\java\org\apache\jmeter\protocol\http\visualizers”这个路径下,也可以通过Ctrl+Shift+F(Commad+Shift+F)直接搜索RequestViewHTTP。如下图 :
2、修改SampleResult类中的 DEFAULT_HTTP_ENCODING的值,将默认的 ISO_8859_1改为UTF-8。SampleResult类在Samples下面,“\src\core\src\main\java\org\apache\jmeter\samplers”,如下图:
3、通过修改 HTTPHC4Impl 类中的setupHttpEntityEnclosingRequestData方法,HTTPHC4Imp类在路径“\src\protocol\http\src\main\java\org\apache\jmeter\protocol\http\sampler”当为Multipar类型的时候设置Charset的值,修改源码如下:
- protected String setupHttpEntityEnclosingRequestData(HttpEntityEnclosingRequestBase entityEnclosingRequest) throws IOException {
- // Buffer to hold the post body, except file content
- StringBuilder postedBody = new StringBuilder(1000);
- HTTPFileArg[] files = getHTTPFiles();
-
- final String contentEncoding = getContentEncodingOrNull();
- final boolean haveContentEncoding = contentEncoding != null;
-
- // Check if we should do a multipart/form-data or an
- // application/x-www-form-urlencoded post request
- if(getUseMultipart()) {
- ......
- // Write the request to our own stream
- MultipartEntityBuilder multipartEntityBuilder = MultipartEntityBuilder.create();
- if(getDoBrowserCompatibleMultipart()) {
- multipartEntityBuilder.setLaxMode();
- // 解决上传文件的中文乱码
- if (haveContentEncoding){
- multipartEntityBuilder.setCharset(Charset.forName(contentEncoding));
- }
- } else {
- multipartEntityBuilder.setStrictMode();
- }
- ......
- }
复制代码
增加了下面的代码对文件编码进行判断和赋值:
- if (haveContentEncoding){
- multipartEntityBuilder.setCharset(Charset.forName(contentEncoding));
- }
复制代码
【总结】
通过以上两种方式可以解决jmeter的中文乱码问题。
|
|