jmeter中利用BeanShell对时间进行复杂处理代码参考

1)生成格式化的时间,并设置生成的时间是在当前时间往后推几天
import java.util.Date;
import java.text.DateFormat;

Date date=new Date();//取时间
Calendar calendar = new GregorianCalendar();
calendar.setTime(date);
calendar.add(calendar.DATE,1);//把日期往后增加一天.整数往后推,负数往前移动
date=calendar.getTime(); //这个时间就是日期往后推一天的结果

DateFormat df = (DateFormat)DateFormat.getDateInstance(); //建立日期格式化器,这里是获取的默认语言环境、默认格式的格式器
df.applyPattern("yyyy-MM-dd"); // 设置日期样式
log.info(df.format(date).toString());

2)输出时间的long值
Date d = new Date("2015-01-07 11:15:15");
long t = d.getTime();

你可能感兴趣的:(接口测试)