小编Gri*_*x34的帖子

JMeter - 在类'java.nio.file.Paths'中找不到静态方法get(java.lang.String)

我正在尝试创建JMeter负载测试.我需要测试来获取示例日志文件并更改其名称.我能找到的唯一方法是在BeanShell预处理器中复制文件,但是我收到以下错误:

ERROR - jmeter.util.BeanShellInterpreter: Error invoking bsh method: evalSourced file: inline evaluation of: ``import java.nio.file.StandardCopyOption; import java.io.IOException; import java . . . '' : Typed variable declaration : Error in method invocation: Static method get( java.lang.String ) not found in class'java.nio.file.Paths'
Run Code Online (Sandbox Code Playgroud)

我使用的代码如下:

import java.nio.file.StandardCopyOption;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;

Path source = Paths.get(vars.get("filename");

String filename = "/Users/GX1/Desktop/jmeter/tmp/Device_"+vars.get("global_counter")+"_upload_"+vars.get("file_counter")+".csv.gz";

Path target = Paths.get(filename);
Files.copy(source, target, StandardCopyOption.REPLACE_EXISTING);
vars.put("filename", filename);
Run Code Online (Sandbox Code Playgroud)

filename,global_counter和file_counter是jmeter变量.

有谁知道我为什么会收到这个错误?beanshell预处理器不能像我尝试使用它那样工作吗?

java jmeter beanshell java.nio.file

6
推荐指数
1
解决办法
3522
查看次数

标签 统计

beanshell ×1

java ×1

java.nio.file ×1

jmeter ×1