JMeter - Static method get( java.lang.String ) not found in class'java.nio.file.Paths'

前端 未结 1 458
猫巷女王i
猫巷女王i 2021-01-12 15:21

I am trying to create a JMeter load test. I need the test to take a sample log file and change its name. The only way I could find to do this was to copy the file in a BeanS

1条回答
  •  心在旅途
    2021-01-12 15:28

    My guess is that the problem is that it's not populating the varargs parameter. Try:

    Path target = Paths.get(filename, new String[0]);
    

    0 讨论(0)
提交回复
热议问题