Jmeter 使用BeanShell 前置处理器,获取当天零点时间戳

时间:2024-03-19 10:22:07

添加一个BeanShell 前置处理器

在Script中写入下面脚本:

long nowTime =System.currentTimeMillis();
long todayStartTime =nowTime - ((nowTime + TimeZone.getDefault().getRawOffset()) % (24 * 60 * 60 * 1000L));
vars.put("time",String.valueOf(todayStartTime));

Jmeter 使用BeanShell 前置处理器,获取当天零点时间戳

该脚本的意义是获取当天零点的时间戳,然后传递给Jmeter的time变量。