In jmeter's beanshell you use Java to get a simple instance of the current time of the system

  • 2020-04-01 02:20:47
  • OfStack


import java.util.*; 
int y,m,d,h,mi,s;     
Calendar cal=Calendar.getInstance();     
y=cal.get(Calendar.YEAR);     
m=cal.get(Calendar.MONTH);     
d=cal.get(Calendar.DATE);     
h=cal.get(Calendar.HOUR_OF_DAY);     
mi=cal.get(Calendar.MINUTE);     
s=cal.get(Calendar.SECOND);  
System.out.println("The current time is:"+y+"/"+m+"/"+d+"/"+h+"/"+mi+"/"+s+"/");  
vars.put("Date",m+"/"+d+"/"+y); 

Related articles: