jmeter:调用bsh方法时出错:eval

时间:2013-05-13 05:58:17

标签: eval runtime-error jmeter

当我尝试在jmeter中执行以下代码时:

import org.json.JSONArray; 
import org.json.JSONObject;
String jsonString = prev . . . ''  

我收到以下错误:

ERROR - jmeter.util.BeanShellInterpreter: Error invoking bsh method: eval   Sourced file: inline evaluation of:
import org.json.JSONArray; import org.json.JSONObject; String jsonString = prev
 : Typed variable declaration : Object constructor 

script org.apache.jorphan.util.JMeterException: Error invoking bsh method: eval Sourced file: inline evaluation of:
    import org.json.JSONArray;
    import org.json.JSONObject; 

    String jsonString = prev . . . '' :
    Typed variable declaration :
     Object constructor  

我不知道这意味着什么。

2 个答案:

答案 0 :(得分:0)

你的代码错了:

  

上一篇。 。 。 ''

它应该是与jdk1.4兼容的java代码

您可以选择使用Jsr223 + groovy,但无论如何您的代码都是错误的

答案 1 :(得分:0)

不确定,但我猜你把BeanShell处理器放错了地方。您的BeanSheel处理器必须位于HTTP请求下,而不是在同一级别。