我尝试使用beanshell在excel或CSV文件中写入数据。但我可以在excel工作表中写入数据,但无法在CSV文件中写入特定单元格的数据。
下面是代码。
var response = prev.getResponseDataAsString();
f = new FileOutputStream("C:/Users/adityak/Desktop/K/app.csv", true);
p = new PrintStream(f);
this.interpreter.setOut(p);
print(response);
f.close();
1条答案
按热度按时间aydmsdu91#
1.从JMeter 3.1开始,建议使用Groovy编写脚本
例如,如果您有以下文件:
并且希望将
5
替换为hello
,则相关的Groovy代码如下所示:演示: