一、在造数据时候,需要获取结果到保存到本地 有两种方式:第一种直接通过获取结果保存到本地,第二种通过数据库导出 今天介绍第一种,通过jmeter中正则表达式获取: 步骤一: 步骤二: 步骤三:
FileOutputStream fps=new FileOutputStream("${outfile_online}",true); OutputStreamWriter osw=new OutputStreamWriter(fps); BufferedWriter bw=new BufferedWriter(osw); bw.append("${mobile}\t${User}\t${User}\t${fd}\n"); if(bw!=null){bw.close();} if(osw!=null){osw.close();} if(fps!=null){fps.close();}
步骤四:
结果:
原文链接:https://www.f2er.com/regex/357722.html