jmeter随笔BeanShell 中时间函数__time()
下面的demo能够加深初学者对beanShell中时间函数_time的理解
//以下用于加深对time函数的理解,请写在jmeter的beanShell中
System.out.println("------6----");
String date = "${__time(yyyy-MM-dd HH:mm:ss,time)}";
System.out.println("------8----");
System.out.println("${__time(yyyyMMdd,)}");
System.out.println(date);
20170619补充:
${__time(yyyyMMddHHmmssSSS,)} 可以得到毫秒级
20171122补充
String sendTime = “${__time(yyyy-MM-dd HH:mm:ss.SSS,)}”;
System.out.println(sendTime);