博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jmete 取配置文件的行数(二)
阅读量:5326 次
发布时间:2019-06-14

本文共 2323 字,大约阅读时间需要 7 分钟。

接上一篇未解决的问题,继续...

beanshell前置处理器貌似因为作用域的问题解决不了,那这个问题怎么解决呢?

jmeter函数,可以自定义函数调用吗?答案是肯定的,下面附上代码:

其中FileRowColContainer为jmeter内部的类,刚好有文件行数的方法直接拿过来用,博友们也可以像上一篇beanshell中那样自己写

package try.jmeter.functions;import java.io.FileNotFoundException;import java.io.IOException;import java.util.Collection;import java.util.LinkedList;import java.util.List;import org.apache.jmeter.engine.util.CompoundVariable;import org.apache.jmeter.functions.AbstractFunction;import org.apache.jmeter.functions.FileRowColContainer;import org.apache.jmeter.functions.InvalidVariableException;import org.apache.jmeter.samplers.SampleResult;import org.apache.jmeter.samplers.Sampler;import org.apache.jmeter.util.JMeterUtils;public class FileRowCount extends AbstractFunction{    private Object[] values;    private FileRowColContainer fc;    private static final List
desc = new LinkedList
(); static { desc.add(JMeterUtils.getResString("read_file_name")); } public List
getArgumentDesc() { // TODO Auto-generated method stub return desc; } public synchronized String execute(SampleResult previousResult, Sampler currentSampler) throws InvalidVariableException { // TODO Auto-generated method stub String myValue = ""; String fileName = ((CompoundVariable)this.values[0]).execute(); try { fc = new FileRowColContainer(fileName); myValue = String.valueOf(fc.getSize()); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } return myValue; } public String getReferenceKey() { // TODO Auto-generated method stub return "__FileRowCount"; } public synchronized void setParameters(Collection
parameters) throws InvalidVariableException { // TODO Auto-generated method stub this.values = parameters.toArray(); checkParameterCount(parameters, 1); } }

注意事项:

1.包名必须包含.functions

2.继承AbstractFunction,实现抽象方法

3.打包成jar包放到jmeter/lib/ext下

查看调用图:

 

参数文件中共三行,问题终于解决了~~~

转载于:https://www.cnblogs.com/RayMin/p/4444664.html

你可能感兴趣的文章
关于这次软件以及pda终端的培训
查看>>
jQuery上传插件Uploadify 3.2在.NET下的详细例子
查看>>
如何辨别一个程序员的水平高低?是靠发量吗?
查看>>
新手村之循环!循环!循环!
查看>>
ASP.NET中Request.ApplicationPath、Request.FilePath、Request.Path、.Request.MapPath
查看>>
正则表达式的用法
查看>>
线程安全问题
查看>>
集合的内置方法
查看>>
IOS Layer的使用
查看>>
Android中使用Handler造成内存泄露的分析和解决
查看>>
SSM集成activiti6.0错误集锦(一)
查看>>
个人作业
查看>>
下拉刷新
查看>>
linux的子进程调用exec( )系列函数
查看>>
MSChart的研究
查看>>
C# 索引器
查看>>
MySQLdb & pymsql
查看>>
zju 2744 回文字符 hdu 1544
查看>>
XmlDocument
查看>>
delphi 内嵌汇编例子
查看>>