/*
下面说一下时间偏移如何打印。
说到时间偏移,就是说我不光想打印当前时间,我还想打印明天,后台,甚至是明年的时间,
那么我们要怎么去处理?这里就需要用到 BeanShell Sampler
/

import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;

try{
Date date = new Date();//获取当前时间
SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String newDate = sf.format(date);
Calendar cal = Calendar.getInstance();
cal.setTime(sf.parse(newDate));
cal.add(Calendar.DAY_OF_YEAR,+0); //此处+0为当前时间,+1为加一天,类推
String orderDate = sf.format(cal.getTime());
cal.add(Calendar.DAY_OF_YEAR,+365); //此处在之前的时间变量基础上叠加,1为一天,365为一年
String senderDate = sf.format(cal.getTime());
vars.put("orderDate",orderDate);
vars.put("senderDate",senderDate); //传递两个变量,orderDate和senderDate

}

catch(Exception e){

    }