2

当我尝试在 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  

我不知道这意味着什么。

4

2 回答 2

1

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

于 2015-01-30T03:37:18.753 回答
0

你的代码是错误的:

上一页 . . ''

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

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

于 2013-05-13T12:44:19.590 回答