码迷,mamicode.com
首页 > 其他好文 > 详细

jmeter响应信息unicode 编码转成中文

时间:2019-02-10 23:27:05      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:方便   prope   使用   查看   result   提交数据   beanshell   stat   后置处理器   

在jmeter 发送请求过程中,有时候后台返回的是unicode 代码,如:

{"status":-1,"msg":"\u63d0\u4ea4\u6570\u636e\u4e0d\u8db3"}

技术图片

 


手动转换成中文为:

{"status":-1,"msg":"提交数据不足"}

需要使用jmeter 把响应内容转换成中文显示,方便查看。思路是使用bean shell 把unicode响应结果转换成中文,步骤为:

1、右键点击请求,添加后置处理器,BeanShell PostProcessor

技术图片

2、在BeanShell PostProcessor(bean shell脚本语法和用法和java一致)设置脚本为:

private static String ascii2native ( String asciicode )
{
    String[] asciis = asciicode.split ("\\\\u");
    String nativeValue = asciis[0];
    try
    {
        for ( int i = 1; i < asciis.length; i++ )
        {
            String code = asciis[i];
            nativeValue += (char) Integer.parseInt (code.substring (0, 4), 16);
            if (code.length () > 4)
            {
                nativeValue += code.substring (4, code.length ());
            }
        }
    }
    catch (NumberFormatException e)
    {
        return asciicode;
    }
    return nativeValue;
}
String asciicode =new String(prev.getResponseData(),"UTF-8");
prev.setResponseData(ascii2native(asciicode));

 

 技术图片

3、执行查看响应信息,响应信息转换为中文:

技术图片

 

 注意:如果还不能转换成中文,需要把jmeter中的配置文件jmeter.properties的配置项sampleresult.default.encoding 修改为utf-8,如不存在这一配置项就添加一行

sampleresult.default.encoding=utf-8

再重新启动jmeter、执行,就可以显示为中文了

jmeter响应信息unicode 编码转成中文

标签:方便   prope   使用   查看   result   提交数据   beanshell   stat   后置处理器   

原文地址:https://www.cnblogs.com/a00ium/p/10360406.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!