Jmeter中通过BeanShell获取当前时间

时间:2021-05-23 19:06:19

第一步编写需要的java类:

Jmeter中通过BeanShell获取当前时间

第二步:将编写好的java类打包成jar包

Jmeter中通过BeanShell获取当前时间

第三步:将jar包放到\apache-jmeter-2.13\lib\ext下面

 

Jmeter中通过BeanShell获取当前时间

第四步:在Jmeter中通过BeanShell使用第三步中的jar包文件,注意这里的返回值long要与java文件中的返回值类型一致

Jmeter中通过BeanShell获取当前时间

第五步:调用BeanShell中定义的变量time

Jmeter中通过BeanShell获取当前时间

第六步:执行Jmeter脚本查看结果

Jmeter中通过BeanShell获取当前时间

 第二种方式:

Jmeter中通过BeanShell获取当前时间

import java.text.SimpleDateFormat;
import java.util.Calendar;
public class GetTime {
public static String getCurrentDateAddMonth(String day){
String year_month_day
= "yyyy-MM-dd";
SimpleDateFormat dft
= new SimpleDateFormat(year_month_day);
Calendar date
= Calendar.getInstance();
date.add(Calendar.MONTH, Integer.parseInt(day));
String endDate
= dft.format(date.getTime());
return endDate;
}
}

String date1
=GetTime.getCurrentDateAddMonth("1");
String date2
=GetTime.getCurrentDateAddMonth("2");
String date3
=GetTime.getCurrentDateAddMonth("3");
String date4
=GetTime.getCurrentDateAddMonth("4");
String date5
=GetTime.getCurrentDateAddMonth("5");
String date6
=GetTime.getCurrentDateAddMonth("6");

vars.put(
"time1",date1);
vars.put(
"time2",date2);
vars.put(
"time3",date3);
vars.put(
"time4",date4);
vars.put(
"time5",date5);
vars.put(
"time6",date6);

log.info(
"==="+date1+"==="+date2+"==="+date3+"==="+date4+"==="+date5+"==="+date6)