beanshell 时间戳转时间日期
import java.text.SimpleDateFormat;
import java.util.Date;
SimpleDateFormat simDateFormat = new SimpleDateFormat("yyyy-MM-ed HH:mm:ss");
long stime = SampleResult.getStartTime();
Date d_stime = new Date(stime);//stime 为long类型,str转long:Long ls=new Long(s);
String s_time = simDateFormat.format(d_stime);// s_time就是格式化后的时间日期